diff options
author | Justin Clark-Casey (justincc) | 2010-03-25 20:33:46 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-03-25 20:33:46 +0000 |
commit | 6ad85dc2590ff6007ff03da6424d5ef718c37602 (patch) | |
tree | 92b639c1d1fbdc57b55dfb167381e0782fc03408 /OpenSim/Framework | |
parent | UNTESTED SQLite code to enable estate setup in interactive confguration (diff) | |
download | opensim-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 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 2 |
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 | ||