From 53610456416dbebaac46af6c7d2cabdacf97558d Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 29 Dec 2020 04:27:20 +0000 Subject: [PATCH] add a debug message on agenthandlers processRequest --- OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs index 1e4435ff44..72b59bd7e2 100644 --- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs +++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs @@ -221,6 +221,7 @@ namespace OpenSim.Server.Handlers.Simulation httpResponse.ContentType = "application/json"; if (m_SimulationService == null) { + m_log.Debug("[AGENT HANDLER]: ProcessRequest called with null Simulation Service"); httpResponse.StatusCode = (int)HttpStatusCode.InternalServerError; httpResponse.RawBuffer = Utils.falseStrBytes; return;