aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers
diff options
context:
space:
mode:
authorUbitUmarov2014-09-24 18:37:59 +0100
committerUbitUmarov2014-09-24 18:37:59 +0100
commitc9079360b9b44443a9394f6ee5fbff741e7ccced (patch)
tree1ed66859ee33ac4cd77bce4033bebc6f1738fb92 /OpenSim/Server/Handlers
parentadd stack trace debug message (diff)
downloadopensim-SC_OLD-c9079360b9b44443a9394f6ee5fbff741e7ccced.zip
opensim-SC_OLD-c9079360b9b44443a9394f6ee5fbff741e7ccced.tar.gz
opensim-SC_OLD-c9079360b9b44443a9394f6ee5fbff741e7ccced.tar.bz2
opensim-SC_OLD-c9079360b9b44443a9394f6ee5fbff741e7ccced.tar.xz
coment out stack trace at newUserConnection, add log msh at createAgent
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r--OpenSim/Server/Handlers/Simulation/AgentHandlers.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
index 62fe3c9..1087a71 100644
--- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
+++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
@@ -397,8 +397,9 @@ namespace OpenSim.Server.Handlers.Simulation
397 397
398 return true; 398 return true;
399*/ 399*/
400 400 bool ret = m_SimulationService.CreateAgent(destination, aCircuit, teleportFlags, out reason);
401 return m_SimulationService.CreateAgent(destination, aCircuit, teleportFlags, out reason); 401 m_log.DebugFormat("[AGENT HANDLER]: CreateAgent {0} {1}", ret.ToString(),reason);
402 return ret;
402 403
403 } 404 }
404 } 405 }