aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-23 10:30:45 +0000
committerJustin Clarke Casey2008-04-23 10:30:45 +0000
commit2de6d09d74ba47e9ee9181e21341b7ffa895267e (patch)
tree234a1eb024f19de7b820135dbf9a516c0ba655cd /OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs
parentFrom: Dr Schofield <hud@zurich.ibm.com> (diff)
downloadopensim-SC_OLD-2de6d09d74ba47e9ee9181e21341b7ffa895267e.zip
opensim-SC_OLD-2de6d09d74ba47e9ee9181e21341b7ffa895267e.tar.gz
opensim-SC_OLD-2de6d09d74ba47e9ee9181e21341b7ffa895267e.tar.bz2
opensim-SC_OLD-2de6d09d74ba47e9ee9181e21341b7ffa895267e.tar.xz
* Get rid of missing texture notification drop messages for now - obscuring too many other debug messages.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs b/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs
index b487628..e46bf6d 100644
--- a/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs
+++ b/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs
@@ -126,9 +126,13 @@ namespace OpenSim.Region.Environment.Modules
126 { 126 {
127 if (missingTextureLimitStrategy.IsFirstRefusal(e.RequestedAssetID)) 127 if (missingTextureLimitStrategy.IsFirstRefusal(e.RequestedAssetID))
128 { 128 {
129 m_log.DebugFormat( 129 // Commenting out this message for now as it causes too much noise with other
130 "[USER TEXTURE DOWNLOAD SERVICE]: Dropping requests for notified missing texture {0} for client {1} since we have received more than {2} requests", 130 // debug messages.
131 e.RequestedAssetID, m_client.AgentId, MAX_ALLOWED_TEXTURE_REQUESTS); 131 // TODO: possibly record this as a statistic in the future
132 //
133// m_log.DebugFormat(
134// "[USER TEXTURE DOWNLOAD SERVICE]: Dropping requests for notified missing texture {0} for client {1} since we have received more than {2} requests",
135// e.RequestedAssetID, m_client.AgentId, MAX_ALLOWED_TEXTURE_REQUESTS);
132 } 136 }
133 137
134 return; 138 return;