diff options
author | Justin Clark-Casey (justincc) | 2012-10-12 00:27:12 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-12 00:27:12 +0100 |
commit | 3af2095cbc8f2a8ffcb552bc2ab7d3ce4a37dac9 (patch) | |
tree | 72f967b89b63ddab8f08160a841ff169d5446e2d /OpenSim/Capabilities/Handlers/GetTexture | |
parent | Fix percentage stats to multiply by 100. Adjust container name for packetpoo... (diff) | |
download | opensim-SC_OLD-3af2095cbc8f2a8ffcb552bc2ab7d3ce4a37dac9.zip opensim-SC_OLD-3af2095cbc8f2a8ffcb552bc2ab7d3ce4a37dac9.tar.gz opensim-SC_OLD-3af2095cbc8f2a8ffcb552bc2ab7d3ce4a37dac9.tar.bz2 opensim-SC_OLD-3af2095cbc8f2a8ffcb552bc2ab7d3ce4a37dac9.tar.xz |
minor: Comment out "Client requested range for texture ... but" message. This is not useful during normal operation.
Diffstat (limited to 'OpenSim/Capabilities/Handlers/GetTexture')
-rw-r--r-- | OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs b/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs index 9b43a80..04cc33a 100644 --- a/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs +++ b/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs | |||
@@ -223,9 +223,9 @@ namespace OpenSim.Capabilities.Handlers | |||
223 | // sending back the last byte instead of an error status | 223 | // sending back the last byte instead of an error status |
224 | if (start >= texture.Data.Length) | 224 | if (start >= texture.Data.Length) |
225 | { | 225 | { |
226 | m_log.DebugFormat( | 226 | // m_log.DebugFormat( |
227 | "[GETTEXTURE]: Client requested range for texture {0} starting at {1} but texture has end of {2}", | 227 | // "[GETTEXTURE]: Client requested range for texture {0} starting at {1} but texture has end of {2}", |
228 | texture.ID, start, texture.Data.Length); | 228 | // texture.ID, start, texture.Data.Length); |
229 | 229 | ||
230 | // Stricly speaking, as per http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html, we should be sending back | 230 | // Stricly speaking, as per http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html, we should be sending back |
231 | // Requested Range Not Satisfiable (416) here. However, it appears that at least recent implementations | 231 | // Requested Range Not Satisfiable (416) here. However, it appears that at least recent implementations |