aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAliciaRaven2016-11-20 13:52:06 +0000
committerAliciaRaven2016-11-20 13:52:06 +0000
commit1d998a770b2c4ce53b0482d1360668ea4142ebe0 (patch)
tree3687ba8f6dceab29c136e089e47266bba1ff7280
parentHG add a small delay before start sending region data (diff)
downloadopensim-SC_OLD-1d998a770b2c4ce53b0482d1360668ea4142ebe0.zip
opensim-SC_OLD-1d998a770b2c4ce53b0482d1360668ea4142ebe0.tar.gz
opensim-SC_OLD-1d998a770b2c4ce53b0482d1360668ea4142ebe0.tar.bz2
opensim-SC_OLD-1d998a770b2c4ce53b0482d1360668ea4142ebe0.tar.xz
Change some minor log messages to debug level in Rest client code.
-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 ca19392..26237de 100644
--- a/OpenSim/Framework/RestClient.cs
+++ b/OpenSim/Framework/RestClient.cs
@@ -430,11 +430,11 @@ namespace OpenSim.Framework
430 430
431 using (Stream dst = _request.GetRequestStream()) 431 using (Stream dst = _request.GetRequestStream())
432 { 432 {
433 m_log.Info("[REST]: GetRequestStream is ok"); 433 m_log.Debug("[REST]: GetRequestStream is ok");
434 434
435 byte[] buf = new byte[1024]; 435 byte[] buf = new byte[1024];
436 int length = src.Read(buf, 0, 1024); 436 int length = src.Read(buf, 0, 1024);
437 m_log.Info("[REST]: First Read is ok"); 437 m_log.Debug("[REST]: First Read is ok");
438 while (length > 0) 438 while (length > 0)
439 { 439 {
440 dst.Write(buf, 0, length); 440 dst.Write(buf, 0, length);