aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
diff options
context:
space:
mode:
authorDiva Canto2011-05-11 10:43:50 -0700
committerDiva Canto2011-05-11 10:43:50 -0700
commitaf2e12d2b4fda54ec028c030c1fe5a87d1950251 (patch)
tree0770482f7bd586ee89dd9b9ccfda585b2f96abf6 /OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
parentFunctional improvement: close the stream. Non-functional: add debug messages ... (diff)
downloadopensim-SC_OLD-af2e12d2b4fda54ec028c030c1fe5a87d1950251.zip
opensim-SC_OLD-af2e12d2b4fda54ec028c030c1fe5a87d1950251.tar.gz
opensim-SC_OLD-af2e12d2b4fda54ec028c030c1fe5a87d1950251.tar.bz2
opensim-SC_OLD-af2e12d2b4fda54ec028c030c1fe5a87d1950251.tar.xz
One more debug message. Don't use this unless your name is nebadon.
Diffstat (limited to '')
-rw-r--r--OpenSim/Server/Handlers/Simulation/AgentHandlers.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
index f938e4b..46b511d 100644
--- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
+++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
@@ -466,7 +466,10 @@ namespace OpenSim.Server.Handlers.Simulation
466 inputStream = new GZipStream(request, CompressionMode.Decompress); 466 inputStream = new GZipStream(request, CompressionMode.Decompress);
467 } 467 }
468 else 468 else
469 {
470 m_log.DebugFormat("[XXX]: Update called with {0}", httpRequest.ContentType);
469 inputStream = request; 471 inputStream = request;
472 }
470 473
471 Encoding encoding = Encoding.UTF8; 474 Encoding encoding = Encoding.UTF8;
472 StreamReader reader = new StreamReader(inputStream, encoding); 475 StreamReader reader = new StreamReader(inputStream, encoding);