When setting debug http level, do this for all known http servers, not just the main instance.

This commit is contained in:
Justin Clark-Casey (justincc)
2012-06-15 01:24:36 +01:00
parent 10e87f9cdc
commit 478acfff34
3 changed files with 41 additions and 22 deletions

View File

@@ -921,7 +921,7 @@ namespace OpenSim
int newDebug;
if (int.TryParse(args[2], out newDebug))
{
MainServer.Instance.DebugLevel = newDebug;
MainServer.DebugLevel = newDebug;
MainConsole.Instance.OutputFormat("Debug http level set to {0}", newDebug);
break;
}