diff options
author | Justin Clark-Casey (justincc) | 2012-06-15 01:24:36 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-15 01:24:36 +0100 |
commit | 478acfff34b94c7c42bdb927be531b669c43af72 (patch) | |
tree | 7ae0a11b9ebc3ff37b9add3e8800cf3fd2963716 /OpenSim/Region | |
parent | Make XMLRPCModule use an existing HTTP server if one already exists on the de... (diff) | |
download | opensim-SC_OLD-478acfff34b94c7c42bdb927be531b669c43af72.zip opensim-SC_OLD-478acfff34b94c7c42bdb927be531b669c43af72.tar.gz opensim-SC_OLD-478acfff34b94c7c42bdb927be531b669c43af72.tar.bz2 opensim-SC_OLD-478acfff34b94c7c42bdb927be531b669c43af72.tar.xz |
When setting debug http level, do this for all known http servers, not just the main instance.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 00ae880..9043137 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -921,7 +921,7 @@ namespace OpenSim | |||
921 | int newDebug; | 921 | int newDebug; |
922 | if (int.TryParse(args[2], out newDebug)) | 922 | if (int.TryParse(args[2], out newDebug)) |
923 | { | 923 | { |
924 | MainServer.Instance.DebugLevel = newDebug; | 924 | MainServer.DebugLevel = newDebug; |
925 | MainConsole.Instance.OutputFormat("Debug http level set to {0}", newDebug); | 925 | MainConsole.Instance.OutputFormat("Debug http level set to {0}", newDebug); |
926 | break; | 926 | break; |
927 | } | 927 | } |