diff options
author | Charles Krinke | 2009-02-22 20:52:55 +0000 |
---|---|---|
committer | Charles Krinke | 2009-02-22 20:52:55 +0000 |
commit | 8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49 (patch) | |
tree | 96a24a49de82056060dd9b7bab0cb209d5f1a129 /OpenSim/Region/CoreModules/InterGrid | |
parent | Allow delivery of object messages gridwide (diff) | |
download | opensim-SC-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.zip opensim-SC-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.gz opensim-SC-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.bz2 opensim-SC-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.xz |
Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:
* Added log4net dependency to physxplugin in prebuild.xml.
* Added missing m_log fields to classes.
* Replaced Console.WriteLine with appropriate m_log.Xxxx
* Tested that nant test target runs succesfully.
* Tested that local opensim sandbox starts up without errors.
Diffstat (limited to 'OpenSim/Region/CoreModules/InterGrid')
-rw-r--r-- | OpenSim/Region/CoreModules/InterGrid/OpenGridProtocolModule.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/InterGrid/OpenGridProtocolModule.cs b/OpenSim/Region/CoreModules/InterGrid/OpenGridProtocolModule.cs index c9a63bd..8065f42 100644 --- a/OpenSim/Region/CoreModules/InterGrid/OpenGridProtocolModule.cs +++ b/OpenSim/Region/CoreModules/InterGrid/OpenGridProtocolModule.cs | |||
@@ -375,7 +375,7 @@ namespace OpenSim.Region.CoreModules.InterGrid | |||
375 | 375 | ||
376 | public OSD RequestRezAvatarMethod(string path, OSD request) | 376 | public OSD RequestRezAvatarMethod(string path, OSD request) |
377 | { | 377 | { |
378 | //System.Console.WriteLine("[REQUESTREZAVATAR]: " + request.ToString()); | 378 | //m_log.Debug("[REQUESTREZAVATAR]: " + request.ToString()); |
379 | 379 | ||
380 | OSDMap requestMap = (OSDMap)request; | 380 | OSDMap requestMap = (OSDMap)request; |
381 | 381 | ||
@@ -602,7 +602,7 @@ namespace OpenSim.Region.CoreModules.InterGrid | |||
602 | } | 602 | } |
603 | } | 603 | } |
604 | 604 | ||
605 | //System.Console.WriteLine("Response:" + responseMap.ToString()); | 605 | //m_log.Debug("Response:" + responseMap.ToString()); |
606 | return responseMap; | 606 | return responseMap; |
607 | } | 607 | } |
608 | 608 | ||