diff options
author | Diva Canto | 2012-09-22 14:01:07 -0700 |
---|---|---|
committer | Diva Canto | 2012-09-22 14:01:07 -0700 |
commit | 772aedc7318209f9c0a2e69ed03b2d8aac4f39ef (patch) | |
tree | 842a2bcf6525b530c9d5f10b9b2625d6586b4a9f | |
parent | HG 2.0: User Agent Service now can also control where the local users can go.... (diff) | |
download | opensim-SC_OLD-772aedc7318209f9c0a2e69ed03b2d8aac4f39ef.zip opensim-SC_OLD-772aedc7318209f9c0a2e69ed03b2d8aac4f39ef.tar.gz opensim-SC_OLD-772aedc7318209f9c0a2e69ed03b2d8aac4f39ef.tar.bz2 opensim-SC_OLD-772aedc7318209f9c0a2e69ed03b2d8aac4f39ef.tar.xz |
Make BaseHttpServer throws say something useful.
Diffstat (limited to '')
-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 8c29ad4..d139235 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -636,11 +636,11 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
636 | } | 636 | } |
637 | catch (IOException e) | 637 | catch (IOException e) |
638 | { | 638 | { |
639 | m_log.Error(String.Format("[BASE HTTP SERVER]: HandleRequest() threw {0} ", e.Message), e); | 639 | m_log.Error(String.Format("[BASE HTTP SERVER]: HandleRequest() threw {0} ", e.StackTrace), e); |
640 | } | 640 | } |
641 | catch (Exception e) | 641 | catch (Exception e) |
642 | { | 642 | { |
643 | m_log.Error(String.Format("[BASE HTTP SERVER]: HandleRequest() threw {0} ", e.Message), e); | 643 | m_log.Error(String.Format("[BASE HTTP SERVER]: HandleRequest() threw {0} ", e.StackTrace), e); |
644 | SendHTML500(response); | 644 | SendHTML500(response); |
645 | } | 645 | } |
646 | finally | 646 | finally |