diff options
author | Diva Canto | 2011-05-11 10:43:50 -0700 |
---|---|---|
committer | Diva Canto | 2011-05-11 10:43:50 -0700 |
commit | af2e12d2b4fda54ec028c030c1fe5a87d1950251 (patch) | |
tree | 0770482f7bd586ee89dd9b9ccfda585b2f96abf6 /OpenSim/Server/Handlers/Simulation | |
parent | Functional improvement: close the stream. Non-functional: add debug messages ... (diff) | |
download | opensim-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 'OpenSim/Server/Handlers/Simulation')
-rw-r--r-- | OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | 3 |
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); |