diff options
author | UbitUmarov | 2017-05-31 04:30:00 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-31 04:30:00 +0100 |
commit | b1c585718c65b709f26fd7d7d55a1ff6223a3ec3 (patch) | |
tree | 2f6636510d46f3c11901ce58203fdde2f97acb8d /OpenSim | |
parent | merge LocalNeighbourServicesConnector and RemoteNeighbourServicesConnector in... (diff) | |
download | opensim-SC-b1c585718c65b709f26fd7d7d55a1ff6223a3ec3.zip opensim-SC-b1c585718c65b709f26fd7d7d55a1ff6223a3ec3.tar.gz opensim-SC-b1c585718c65b709f26fd7d7d55a1ff6223a3ec3.tar.bz2 opensim-SC-b1c585718c65b709f26fd7d7d55a1ff6223a3ec3.tar.xz |
remove debug messages
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/RestClient.cs | 4 |
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); |