aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-06-25 20:57:38 +0100
committerJustin Clark-Casey (justincc)2010-06-25 20:59:24 +0100
commit77fc48f2f9266f53ae742f7e1900d4282f4c1424 (patch)
treee2f8bc6ba85520f4c751b2d8ed5151c1abf65ee0
parentstop KeyNotFoundException() being thrown in RemoveScenePresence if the agent ... (diff)
downloadopensim-SC_OLD-77fc48f2f9266f53ae742f7e1900d4282f4c1424.zip
opensim-SC_OLD-77fc48f2f9266f53ae742f7e1900d4282f4c1424.tar.gz
opensim-SC_OLD-77fc48f2f9266f53ae742f7e1900d4282f4c1424.tar.bz2
opensim-SC_OLD-77fc48f2f9266f53ae742f7e1900d4282f4c1424.tar.xz
fix web request exception reporting properly this time
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index a6e00c2..8123f2f 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -310,7 +310,7 @@ namespace OpenSim.Framework.Servers.HttpServer
310 } 310 }
311 catch (Exception e) 311 catch (Exception e)
312 { 312 {
313 m_log.Error(string.Format("[BASE HTTP SERVER]: OnRequest() failed with "), e); 313 m_log.ErrorFormat("[BASE HTTP SERVER]: OnRequest() failed with {0}{1}", e.Message, e.StackTrace);
314 } 314 }
315 } 315 }
316 316