diff options
author | Justin Clark-Casey (justincc) | 2011-02-02 20:02:10 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-02-02 20:02:10 +0000 |
commit | 4f7cf491e6fa06a6ac4672fa81e707437f3fa537 (patch) | |
tree | 8e67f4c047d823ea2102b3eb26bf7ceb8b69b787 | |
parent | Record number of resent packets in LindenUDP stack and display in stats report (diff) | |
download | opensim-SC_OLD-4f7cf491e6fa06a6ac4672fa81e707437f3fa537.zip opensim-SC_OLD-4f7cf491e6fa06a6ac4672fa81e707437f3fa537.tar.gz opensim-SC_OLD-4f7cf491e6fa06a6ac4672fa81e707437f3fa537.tar.bz2 opensim-SC_OLD-4f7cf491e6fa06a6ac4672fa81e707437f3fa537.tar.xz |
Comment out texture CAPS 'texture not found' message for now
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs b/OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs index 6fb8b46..df4d561 100644 --- a/OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs | |||
@@ -245,14 +245,12 @@ namespace OpenSim.Region.CoreModules.Avatar.ObjectCaps | |||
245 | WriteTextureData(httpRequest, httpResponse, texture, format); | 245 | WriteTextureData(httpRequest, httpResponse, texture, format); |
246 | return true; | 246 | return true; |
247 | } | 247 | } |
248 | |||
249 | } | 248 | } |
250 | 249 | ||
251 | // not found | 250 | // not found |
252 | m_log.Warn("[GETTEXTURE]: Texture " + textureID + " not found"); | 251 | // m_log.Warn("[GETTEXTURE]: Texture " + textureID + " not found"); |
253 | httpResponse.StatusCode = (int)System.Net.HttpStatusCode.NotFound; | 252 | httpResponse.StatusCode = (int)System.Net.HttpStatusCode.NotFound; |
254 | return true; | 253 | return true; |
255 | |||
256 | } | 254 | } |
257 | 255 | ||
258 | private void WriteTextureData(OSHttpRequest request, OSHttpResponse response, AssetBase texture, string format) | 256 | private void WriteTextureData(OSHttpRequest request, OSHttpResponse response, AssetBase texture, string format) |