aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-19 01:16:07 +0000
committerJustin Clark-Casey (justincc)2011-11-19 01:16:07 +0000
commit10a23a823edb261af2c0b7895ce0898ea6918ef1 (patch)
tree9c3af81fea9986b58964fe3276ac337497a13435 /OpenSim/Server
parentEnable v2/v3 map tile url setting on robust as default in config (diff)
downloadopensim-SC_OLD-10a23a823edb261af2c0b7895ce0898ea6918ef1.zip
opensim-SC_OLD-10a23a823edb261af2c0b7895ce0898ea6918ef1.tar.gz
opensim-SC_OLD-10a23a823edb261af2c0b7895ce0898ea6918ef1.tar.bz2
opensim-SC_OLD-10a23a823edb261af2c0b7895ce0898ea6918ef1.tar.xz
Get rid of the spurious [WEB UTIL] couldn't decode <OpenSim agent 57956c4b-ff2e-4fc1-9995-613c6256cc98>: Invalid character 'O' in input string messages
These are just the result of an attempt to canonicalize received messages - it's not important that we constantly log them. Also finally get the deregister grid service message working properly
Diffstat (limited to 'OpenSim/Server')
-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