aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-03-25 20:33:46 +0000
committerJustin Clark-Casey (justincc)2010-05-20 23:12:02 +0100
commit5fc990d9e78498afe8221a97fdd1f0dd5e7e314f (patch)
tree160e96ac7a367f8fd343a1f9cc7b8d4c884afd03 /OpenSim
parentUpgrade Newtonsoft.Json.dll from 1.3 to 3.5r6 (diff)
downloadopensim-SC_OLD-5fc990d9e78498afe8221a97fdd1f0dd5e7e314f.zip
opensim-SC_OLD-5fc990d9e78498afe8221a97fdd1f0dd5e7e314f.tar.gz
opensim-SC_OLD-5fc990d9e78498afe8221a97fdd1f0dd5e7e314f.tar.bz2
opensim-SC_OLD-5fc990d9e78498afe8221a97fdd1f0dd5e7e314f.tar.xz
put out full exception stack if something reaches top of base http server OnRequest() on both mono and .net
replace Newtonsoft.Json.XML since the updated copy got accidentally reverted by another commit
Diffstat (limited to 'OpenSim')
-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 214f936..7c9e51e 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -311,7 +311,7 @@ namespace OpenSim.Framework.Servers.HttpServer
311 } 311 }
312 catch (Exception e) 312 catch (Exception e)
313 { 313 {
314 m_log.ErrorFormat("[BASE HTTP SERVER]: OnRequest() failed with {0} {1}", e.Message, e.StackTrace); 314 m_log.Error(string.Format("[BASE HTTP SERVER]: OnRequest() failed with "), e);
315 } 315 }
316 } 316 }
317 317