diff options
author | Adam Frisby | 2007-06-20 15:50:06 +0000 |
---|---|---|
committer | Adam Frisby | 2007-06-20 15:50:06 +0000 |
commit | 29053589bff370916f4067dade70969499f77ce3 (patch) | |
tree | 582e2c839ce2e681dc98087bb12c71241641ffc6 /OpenSim/OpenSim.Region/EstateManager.cs | |
parent | * Removed ClientThreads from avatar (diff) | |
download | opensim-SC_OLD-29053589bff370916f4067dade70969499f77ce3.zip opensim-SC_OLD-29053589bff370916f4067dade70969499f77ce3.tar.gz opensim-SC_OLD-29053589bff370916f4067dade70969499f77ce3.tar.bz2 opensim-SC_OLD-29053589bff370916f4067dade70969499f77ce3.tar.xz |
* Replaced old logging mechanism with new shiny logging mechanism
* Console, I bid thee farewall. Use "Log" now where console used to exist.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/OpenSim.Region/EstateManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/OpenSim.Region/EstateManager.cs b/OpenSim/OpenSim.Region/EstateManager.cs index 69ce481..3b918b1 100644 --- a/OpenSim/OpenSim.Region/EstateManager.cs +++ b/OpenSim/OpenSim.Region/EstateManager.cs | |||
@@ -79,7 +79,7 @@ namespace OpenSim.Region | |||
79 | case "setregioninfo": | 79 | case "setregioninfo": |
80 | if (packet.ParamList.Length != 9) | 80 | if (packet.ParamList.Length != 9) |
81 | { | 81 | { |
82 | OpenSim.Framework.Console.MainConsole.Instance.Error("EstateOwnerMessage: SetRegionInfo method has a ParamList of invalid length"); | 82 | OpenSim.Framework.Console.MainLog.Instance.Error("EstateOwnerMessage: SetRegionInfo method has a ParamList of invalid length"); |
83 | } | 83 | } |
84 | else | 84 | else |
85 | { | 85 | { |
@@ -223,7 +223,7 @@ namespace OpenSim.Region | |||
223 | case "setregionterrain": | 223 | case "setregionterrain": |
224 | if (packet.ParamList.Length != 9) | 224 | if (packet.ParamList.Length != 9) |
225 | { | 225 | { |
226 | OpenSim.Framework.Console.MainConsole.Instance.Error("EstateOwnerMessage: SetRegionTerrain method has a ParamList of invalid length"); | 226 | OpenSim.Framework.Console.MainLog.Instance.Error("EstateOwnerMessage: SetRegionTerrain method has a ParamList of invalid length"); |
227 | } | 227 | } |
228 | else | 228 | else |
229 | { | 229 | { |
@@ -237,7 +237,7 @@ namespace OpenSim.Region | |||
237 | } | 237 | } |
238 | break; | 238 | break; |
239 | default: | 239 | default: |
240 | OpenSim.Framework.Console.MainConsole.Instance.Error("EstateOwnerMessage: Unknown method requested\n" + packet.ToString()); | 240 | OpenSim.Framework.Console.MainLog.Instance.Error("EstateOwnerMessage: Unknown method requested\n" + packet.ToString()); |
241 | break; | 241 | break; |
242 | } | 242 | } |
243 | } | 243 | } |