aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs
diff options
context:
space:
mode:
authorDiva Canto2011-05-14 13:36:55 -0700
committerDiva Canto2011-05-14 13:36:55 -0700
commita2f034c5546880215baae53184e591b2e4fd223f (patch)
treeda442a22727a054d23f6ade12a89e6f393c12930 /OpenSim/Framework/WebUtil.cs
parentAlso changed a couple of messages in WebUtil from Wanr/Info to Debug. (diff)
downloadopensim-SC_OLD-a2f034c5546880215baae53184e591b2e4fd223f.zip
opensim-SC_OLD-a2f034c5546880215baae53184e591b2e4fd223f.tar.gz
opensim-SC_OLD-a2f034c5546880215baae53184e591b2e4fd223f.tar.bz2
opensim-SC_OLD-a2f034c5546880215baae53184e591b2e4fd223f.tar.xz
Changed yet more Warns to Debugs.
Diffstat (limited to 'OpenSim/Framework/WebUtil.cs')
-rw-r--r--OpenSim/Framework/WebUtil.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs
index 9323607..147a011 100644
--- a/OpenSim/Framework/WebUtil.cs
+++ b/OpenSim/Framework/WebUtil.cs
@@ -967,7 +967,7 @@ namespace OpenSim.Framework
967 } 967 }
968 catch (Exception e) 968 catch (Exception e)
969 { 969 {
970 m_log.WarnFormat("[SynchronousRestObjectRequester]: exception in sending data to {0}: {1}", requestUrl, e); 970 m_log.DebugFormat("[SynchronousRestObjectRequester]: exception in sending data to {0}: {1}", requestUrl, e);
971 return deserial; 971 return deserial;
972 } 972 }
973 finally 973 finally
@@ -992,18 +992,18 @@ namespace OpenSim.Framework
992 respStream.Close(); 992 respStream.Close();
993 } 993 }
994 else 994 else
995 m_log.WarnFormat("[SynchronousRestObjectRequester]: Oops! no content found in response stream from {0} {1}", requestUrl, verb); 995 m_log.DebugFormat("[SynchronousRestObjectRequester]: Oops! no content found in response stream from {0} {1}", requestUrl, verb);
996 996
997 } 997 }
998 } 998 }
999 catch (System.InvalidOperationException) 999 catch (System.InvalidOperationException)
1000 { 1000 {
1001 // This is what happens when there is invalid XML 1001 // This is what happens when there is invalid XML
1002 m_log.WarnFormat("[SynchronousRestObjectRequester]: Invalid XML {0} {1}", requestUrl, typeof(TResponse).ToString()); 1002 m_log.DebugFormat("[SynchronousRestObjectRequester]: Invalid XML {0} {1}", requestUrl, typeof(TResponse).ToString());
1003 } 1003 }
1004 catch (Exception e) 1004 catch (Exception e)
1005 { 1005 {
1006 m_log.WarnFormat("[SynchronousRestObjectRequester]: Exception on response from {0} {1}", requestUrl, e); 1006 m_log.DebugFormat("[SynchronousRestObjectRequester]: Exception on response from {0} {1}", requestUrl, e);
1007 } 1007 }
1008 1008
1009 return deserial; 1009 return deserial;