aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorUbitUmarov2017-05-31 04:30:00 +0100
committerUbitUmarov2017-05-31 04:30:00 +0100
commitb1c585718c65b709f26fd7d7d55a1ff6223a3ec3 (patch)
tree2f6636510d46f3c11901ce58203fdde2f97acb8d /OpenSim/Framework
parentmerge LocalNeighbourServicesConnector and RemoteNeighbourServicesConnector in... (diff)
downloadopensim-SC_OLD-b1c585718c65b709f26fd7d7d55a1ff6223a3ec3.zip
opensim-SC_OLD-b1c585718c65b709f26fd7d7d55a1ff6223a3ec3.tar.gz
opensim-SC_OLD-b1c585718c65b709f26fd7d7d55a1ff6223a3ec3.tar.bz2
opensim-SC_OLD-b1c585718c65b709f26fd7d7d55a1ff6223a3ec3.tar.xz
remove debug messages
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/RestClient.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/RestClient.cs b/OpenSim/Framework/RestClient.cs
index ac394fb..4939cf7 100644
--- a/OpenSim/Framework/RestClient.cs
+++ b/OpenSim/Framework/RestClient.cs
@@ -433,11 +433,11 @@ namespace OpenSim.Framework
433 { 433 {
434 using (Stream dst = _request.GetRequestStream()) 434 using (Stream dst = _request.GetRequestStream())
435 { 435 {
436 m_log.Debug("[REST]: GetRequestStream is ok"); 436// m_log.Debug("[REST]: GetRequestStream is ok");
437 437
438 byte[] buf = new byte[1024]; 438 byte[] buf = new byte[1024];
439 int length = src.Read(buf, 0, 1024); 439 int length = src.Read(buf, 0, 1024);
440 m_log.Debug("[REST]: First Read is ok"); 440// m_log.Debug("[REST]: First Read is ok");
441 while (length > 0) 441 while (length > 0)
442 { 442 {
443 dst.Write(buf, 0, length); 443 dst.Write(buf, 0, length);