aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-03-22 17:56:05 +0000
committerJustin Clarke Casey2008-03-22 17:56:05 +0000
commit625e8f7700b0b2cdfc3f04ead15c508422d0c6a0 (patch)
treee64825fa850920119ff6b7e973acff8df8b4bfb9 /OpenSim
parent* Tell the user what the new terrain commands format is if they try to execut... (diff)
downloadopensim-SC_OLD-625e8f7700b0b2cdfc3f04ead15c508422d0c6a0.zip
opensim-SC_OLD-625e8f7700b0b2cdfc3f04ead15c508422d0c6a0.tar.gz
opensim-SC_OLD-625e8f7700b0b2cdfc3f04ead15c508422d0c6a0.tar.bz2
opensim-SC_OLD-625e8f7700b0b2cdfc3f04ead15c508422d0c6a0.tar.xz
* Minor log message change
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs b/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs
index d233263..1b91dd9 100644
--- a/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs
+++ b/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs
@@ -143,7 +143,7 @@ namespace OpenSim.Region.Environment.Modules
143 if (MAX_ALLOWED_TEXTURE_REQUESTS + 1 == dispatchedTextureRequestCounts[e.RequestedAssetID]) 143 if (MAX_ALLOWED_TEXTURE_REQUESTS + 1 == dispatchedTextureRequestCounts[e.RequestedAssetID])
144 { 144 {
145 m_log.WarnFormat( 145 m_log.WarnFormat(
146 "[USER TEXTURE DOWNLOAD SERVICE]: No longer sending already dispatched texture {0} to {1} since it has made more than {2} requests for it", 146 "[USER TEXTURE DOWNLOAD SERVICE]: Dropping requests for dispatched texture {0} from {1} since we have received more than {2} requests",
147 e.RequestedAssetID, m_client.AgentId, MAX_ALLOWED_TEXTURE_REQUESTS); 147 e.RequestedAssetID, m_client.AgentId, MAX_ALLOWED_TEXTURE_REQUESTS);
148 } 148 }
149 149