diff options
author | Justin Clark-Casey (justincc) | 2010-06-25 20:57:38 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-06-25 20:57:38 +0100 |
commit | c7e7cb04a3b8612c660b4fa308f77795d62f629e (patch) | |
tree | cbb19bdb6c4fa9714553d9091d915e8ca779ea39 | |
parent | Revert "Report http server onRequest() exception properly." (diff) | |
download | opensim-SC_OLD-c7e7cb04a3b8612c660b4fa308f77795d62f629e.zip opensim-SC_OLD-c7e7cb04a3b8612c660b4fa308f77795d62f629e.tar.gz opensim-SC_OLD-c7e7cb04a3b8612c660b4fa308f77795d62f629e.tar.bz2 opensim-SC_OLD-c7e7cb04a3b8612c660b4fa308f77795d62f629e.tar.xz |
fix web request exception reporting properly this time
-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 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 | ||