From 1e213f5150b747fa87ddbe6b64e385147b56d4ef Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 22 Jun 2016 15:55:39 -0700 Subject: [PATCH] Mantis #7802: added debug message to diagnose the problem. --- OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs index c21ef816a9..26f000aa63 100644 --- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs +++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs @@ -259,6 +259,8 @@ namespace OpenSim.Server.Handlers.Simulation } bool result = m_SimulationService.QueryAccess(destination, agentID, agentHomeURI, viaTeleport, position, features, ctx, out reason); + m_log.DebugFormat("[AGENT HANDLER]: QueryAccess returned {0} ({1}). Version={2}, {3}/{4}", + result, reason, version, inboundVersion, outboundVersion); resp["success"] = OSD.FromBoolean(result); resp["reason"] = OSD.FromString(reason);