diff options
author | Justin Clark-Casey (justincc) | 2012-04-20 03:12:25 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-04-20 03:12:25 +0100 |
commit | f3dda2d85d5b72aa880a399805d052b241d3abef (patch) | |
tree | 99f9a031cf6925b8a132be070af9a4265968a84b /OpenSim/Framework | |
parent | Stop teleports from dropping tall avatars through or embedding them in the fl... (diff) | |
download | opensim-SC_OLD-f3dda2d85d5b72aa880a399805d052b241d3abef.zip opensim-SC_OLD-f3dda2d85d5b72aa880a399805d052b241d3abef.tar.gz opensim-SC_OLD-f3dda2d85d5b72aa880a399805d052b241d3abef.tar.bz2 opensim-SC_OLD-f3dda2d85d5b72aa880a399805d052b241d3abef.tar.xz |
Add more exception detail to Exception and IOException throws in BaseHttpServer.HandleRequest()
Diffstat (limited to 'OpenSim/Framework')
-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 9d8561b..0fbf90a 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 {0}", e); | 665 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}{1}", e.Message, e.StackTrace); |
666 | } | 666 | } |
667 | catch (Exception e) | 667 | catch (Exception e) |
668 | { | 668 | { |
669 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}", e.StackTrace); | 669 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}{1}", e.Message, e.StackTrace); |
670 | SendHTML500(response); | 670 | SendHTML500(response); |
671 | } | 671 | } |
672 | finally | 672 | finally |