This patch just tightens up console handling in BasOpenSimServer
and removes (or redirects) a couple of messages that were being issued
using Console.Writeline.
This commit is contained in:
Justin Clarke Casey
2008-05-12 13:39:46 +00:00
parent b34d5716a8
commit b4d128c811
3 changed files with 25 additions and 10 deletions

View File

@@ -71,7 +71,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy
public void Initialise(OpenSimMain openSim)
{
Console.WriteLine("Starting proxy");
m_log.Info("Starting proxy");
string proxyURL = openSim.ConfigSource.Configs["Network"].GetString("proxy_url", "");
if (proxyURL.Length == 0) return;
@@ -543,4 +543,4 @@ namespace OpenSim.ApplicationPlugins.RegionProxy
#endregion
}
}
}