remove debug messages

0.9.0-post-fixes
UbitUmarov 2017-05-31 04:30:00 +01:00
parent e5991124dd
commit b1c585718c
1 changed files with 2 additions and 2 deletions

View File

@ -433,11 +433,11 @@ namespace OpenSim.Framework
{
using (Stream dst = _request.GetRequestStream())
{
m_log.Debug("[REST]: GetRequestStream is ok");
// m_log.Debug("[REST]: GetRequestStream is ok");
byte[] buf = new byte[1024];
int length = src.Read(buf, 0, 1024);
m_log.Debug("[REST]: First Read is ok");
// m_log.Debug("[REST]: First Read is ok");
while (length > 0)
{
dst.Write(buf, 0, length);