aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDiva Canto2016-06-22 15:55:39 -0700
committerDiva Canto2016-06-22 15:55:39 -0700
commit1e213f5150b747fa87ddbe6b64e385147b56d4ef (patch)
tree22398126b7cd8d25ea34699b73764a8badda84c8
parentMissing AsBoolean (diff)
downloadopensim-SC_OLD-1e213f5150b747fa87ddbe6b64e385147b56d4ef.zip
opensim-SC_OLD-1e213f5150b747fa87ddbe6b64e385147b56d4ef.tar.gz
opensim-SC_OLD-1e213f5150b747fa87ddbe6b64e385147b56d4ef.tar.bz2
opensim-SC_OLD-1e213f5150b747fa87ddbe6b64e385147b56d4ef.tar.xz
Mantis #7802: added debug message to diagnose the problem.
-rw-r--r--OpenSim/Server/Handlers/Simulation/AgentHandlers.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
index c21ef81..26f000a 100644
--- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
+++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
@@ -259,6 +259,8 @@ namespace OpenSim.Server.Handlers.Simulation
259 } 259 }
260 260
261 bool result = m_SimulationService.QueryAccess(destination, agentID, agentHomeURI, viaTeleport, position, features, ctx, out reason); 261 bool result = m_SimulationService.QueryAccess(destination, agentID, agentHomeURI, viaTeleport, position, features, ctx, out reason);
262 m_log.DebugFormat("[AGENT HANDLER]: QueryAccess returned {0} ({1}). Version={2}, {3}/{4}",
263 result, reason, version, inboundVersion, outboundVersion);
262 264
263 resp["success"] = OSD.FromBoolean(result); 265 resp["success"] = OSD.FromBoolean(result);
264 resp["reason"] = OSD.FromString(reason); 266 resp["reason"] = OSD.FromString(reason);