diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/WebUtil.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs index 54a6c0c..07c9e3f 100644 --- a/OpenSim/Framework/WebUtil.cs +++ b/OpenSim/Framework/WebUtil.cs | |||
@@ -1064,10 +1064,11 @@ namespace OpenSim.Framework | |||
1064 | } | 1064 | } |
1065 | } | 1065 | } |
1066 | } | 1066 | } |
1067 | catch (System.InvalidOperationException) | 1067 | catch (System.InvalidOperationException e) |
1068 | { | 1068 | { |
1069 | // This is what happens when there is invalid XML | 1069 | m_log.Debug( |
1070 | m_log.DebugFormat("[FORMS]: InvalidOperationException on receiving {0} {1}", verb, requestUrl); | 1070 | string.Format( |
1071 | "[FORMS]: InvalidOperationException on response from {0} {1} ", verb, requestUrl), e); | ||
1071 | } | 1072 | } |
1072 | } | 1073 | } |
1073 | 1074 | ||