diff options
author | Diva Canto | 2012-04-06 11:21:27 -0700 |
---|---|---|
committer | Diva Canto | 2012-04-06 11:21:27 -0700 |
commit | cdbe34716f78072168189e30ac5d6b8e7bcc91ef (patch) | |
tree | 7a2ab12663e47ea76a7c3fad740194cd2e24fda4 /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |
parent | terrain save-tile extensions Signed-off-by: Garmin Kawaguichi <garmin.kawagui... (diff) | |
download | opensim-SC_OLD-cdbe34716f78072168189e30ac5d6b8e7bcc91ef.zip opensim-SC_OLD-cdbe34716f78072168189e30ac5d6b8e7bcc91ef.tar.gz opensim-SC_OLD-cdbe34716f78072168189e30ac5d6b8e7bcc91ef.tar.bz2 opensim-SC_OLD-cdbe34716f78072168189e30ac5d6b8e7bcc91ef.tar.xz |
Thank you, BaseHttpServer, for telling me where things go wrong.
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index a8ece79..9d8561b 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -662,11 +662,11 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
662 | } | 662 | } |
663 | catch (IOException e) | 663 | catch (IOException e) |
664 | { | 664 | { |
665 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw ", e); | 665 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}", e); |
666 | } | 666 | } |
667 | catch (Exception e) | 667 | catch (Exception e) |
668 | { | 668 | { |
669 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw " + e.ToString()); | 669 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}", e.StackTrace); |
670 | SendHTML500(response); | 670 | SendHTML500(response); |
671 | } | 671 | } |
672 | finally | 672 | finally |