aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer
diff options
context:
space:
mode:
authorCharles Krinke2009-02-22 20:52:55 +0000
committerCharles Krinke2009-02-22 20:52:55 +0000
commit8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49 (patch)
tree96a24a49de82056060dd9b7bab0cb209d5f1a129 /OpenSim/Grid/UserServer
parentAllow delivery of object messages gridwide (diff)
downloadopensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.zip
opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.gz
opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.bz2
opensim-SC_OLD-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/Grid/UserServer')
-rw-r--r--OpenSim/Grid/UserServer/UserManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs
index f3e9884..6229dec 100644
--- a/OpenSim/Grid/UserServer/UserManager.cs
+++ b/OpenSim/Grid/UserServer/UserManager.cs
@@ -402,7 +402,7 @@ namespace OpenSim.Grid.UserServer
402 Hashtable requestData = (Hashtable) request.Params[0]; 402 Hashtable requestData = (Hashtable) request.Params[0];
403 UserProfileData userProfile; 403 UserProfileData userProfile;
404 //CFK: this clogs the UserServer log and is not necessary at this time. 404 //CFK: this clogs the UserServer log and is not necessary at this time.
405 //CFK: Console.WriteLine("METHOD BY UUID CALLED"); 405 //CFK: m_log.Debug("METHOD BY UUID CALLED");
406 if (requestData.Contains("avatar_uuid")) 406 if (requestData.Contains("avatar_uuid"))
407 { 407 {
408 try 408 try
@@ -435,7 +435,7 @@ namespace OpenSim.Grid.UserServer
435 Hashtable requestData = (Hashtable) request.Params[0]; 435 Hashtable requestData = (Hashtable) request.Params[0];
436 UserProfileData userProfile; 436 UserProfileData userProfile;
437 //CFK: this clogs the UserServer log and is not necessary at this time. 437 //CFK: this clogs the UserServer log and is not necessary at this time.
438 //CFK: Console.WriteLine("METHOD BY UUID CALLED"); 438 //CFK: m_log.Debug("METHOD BY UUID CALLED");
439 if (requestData.Contains("avatar_uuid")) 439 if (requestData.Contains("avatar_uuid"))
440 { 440 {
441 UUID guess; 441 UUID guess;