aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Simulation
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Server/Handlers/Simulation')
-rw-r--r--OpenSim/Server/Handlers/Simulation/AgentHandlers.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
index e8ae05b..b65a443 100644
--- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
+++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
@@ -220,14 +220,13 @@ namespace OpenSim.Server.Handlers.Simulation
220 responsedata["int_response_code"] = HttpStatusCode.OK; 220 responsedata["int_response_code"] = HttpStatusCode.OK;
221 responsedata["str_response_string"] = "OpenSim agent " + id.ToString(); 221 responsedata["str_response_string"] = "OpenSim agent " + id.ToString();
222 222
223 m_log.Debug("[AGENT HANDLER]: Agent Released/Deleted."); 223 m_log.DebugFormat("[AGENT HANDLER]: Agent {0} Released/Deleted from region {1}", id, regionID);
224 } 224 }
225 225
226 protected virtual void ReleaseAgent(UUID regionID, UUID id) 226 protected virtual void ReleaseAgent(UUID regionID, UUID id)
227 { 227 {
228 m_SimulationService.ReleaseAgent(regionID, id, ""); 228 m_SimulationService.ReleaseAgent(regionID, id, "");
229 } 229 }
230
231 } 230 }
232 231
233 public class AgentPostHandler : BaseStreamHandler 232 public class AgentPostHandler : BaseStreamHandler