aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-03-25 20:33:46 +0000
committerJustin Clark-Casey (justincc)2010-03-25 20:33:46 +0000
commit6ad85dc2590ff6007ff03da6424d5ef718c37602 (patch)
tree92b639c1d1fbdc57b55dfb167381e0782fc03408 /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
parentUNTESTED SQLite code to enable estate setup in interactive confguration (diff)
downloadopensim-SC_OLD-6ad85dc2590ff6007ff03da6424d5ef718c37602.zip
opensim-SC_OLD-6ad85dc2590ff6007ff03da6424d5ef718c37602.tar.gz
opensim-SC_OLD-6ad85dc2590ff6007ff03da6424d5ef718c37602.tar.bz2
opensim-SC_OLD-6ad85dc2590ff6007ff03da6424d5ef718c37602.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 '')
-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 350c041..43a6757 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.ErrorFormat("[BASE HTTP SERVER]: OnRequest() failed with {0} {1}", e.Message, e.StackTrace); 313 m_log.Error(string.Format("[BASE HTTP SERVER]: OnRequest() failed with "), e);
314 } 314 }
315 } 315 }
316 316