aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDiva Canto2011-05-12 20:20:08 -0700
committerDiva Canto2011-05-12 20:20:08 -0700
commit1cc70df3b45f188f10c7c835bf89700d629203f0 (patch)
tree8165e92b610769f4b731d3be8033a3834791e94d
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-1cc70df3b45f188f10c7c835bf89700d629203f0.zip
opensim-SC_OLD-1cc70df3b45f188f10c7c835bf89700d629203f0.tar.gz
opensim-SC_OLD-1cc70df3b45f188f10c7c835bf89700d629203f0.tar.bz2
opensim-SC_OLD-1cc70df3b45f188f10c7c835bf89700d629203f0.tar.xz
One more thing printed out. #OfflineIM
-rw-r--r--OpenSim/Framework/WebUtil.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs
index 511d660..8fd34cf 100644
--- a/OpenSim/Framework/WebUtil.cs
+++ b/OpenSim/Framework/WebUtil.cs
@@ -940,8 +940,6 @@ namespace OpenSim.Framework
940 WebRequest request = WebRequest.Create(requestUrl); 940 WebRequest request = WebRequest.Create(requestUrl);
941 request.Method = verb; 941 request.Method = verb;
942 942
943 m_log.DebugFormat("[XXX] 1");
944
945 if ((verb == "POST") || (verb == "PUT")) 943 if ((verb == "POST") || (verb == "PUT"))
946 { 944 {
947 request.ContentType = "text/xml"; 945 request.ContentType = "text/xml";
@@ -961,7 +959,6 @@ namespace OpenSim.Framework
961 int length = (int)buffer.Length; 959 int length = (int)buffer.Length;
962 request.ContentLength = length; 960 request.ContentLength = length;
963 961
964 m_log.DebugFormat("[XXX] 2");
965 Stream requestStream = null; 962 Stream requestStream = null;
966 try 963 try
967 { 964 {
@@ -996,7 +993,7 @@ namespace OpenSim.Framework
996 respStream.Close(); 993 respStream.Close();
997 } 994 }
998 else 995 else
999 m_log.DebugFormat("[SynchronousRestObjectRequester]: Oops! no content found in response stream from {0} {1}", requestUrl, verb); 996 m_log.DebugFormat("[SynchronousRestObjectRequester]: Oops! no content found in response stream from {0} {1}, ContentLength = {2}", requestUrl, verb, resp.ContentLength);
1000 997
1001 } 998 }
1002 } 999 }