coment out stack trace at newUserConnection, add log msh at createAgent

avinationmerge
UbitUmarov 2014-09-24 18:37:59 +01:00
parent 46bf6d1640
commit c9079360b9
2 changed files with 4 additions and 3 deletions

View File

@ -3841,7 +3841,7 @@ namespace OpenSim.Region.Framework.Scenes
acd.startpos
);
m_log.DebugFormat("NewUserConnection stack {0}", Environment.StackTrace);
// m_log.DebugFormat("NewUserConnection stack {0}", Environment.StackTrace);
if (!LoginsEnabled)
{

View File

@ -397,8 +397,9 @@ namespace OpenSim.Server.Handlers.Simulation
return true;
*/
return m_SimulationService.CreateAgent(destination, aCircuit, teleportFlags, out reason);
bool ret = m_SimulationService.CreateAgent(destination, aCircuit, teleportFlags, out reason);
m_log.DebugFormat("[AGENT HANDLER]: CreateAgent {0} {1}", ret.ToString(),reason);
return ret;
}
}