Browse Source

add a debug message on agenthandlers processRequest

UbitUmarov 3 years ago
parent
commit
5361045641
1 changed files with 1 additions and 0 deletions
  1. 1 0
      OpenSim/Server/Handlers/Simulation/AgentHandlers.cs

+ 1 - 0
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;