* Add comments and slight corrections to ClientView.AgentTextureCached

* Reduce 'asset not found' console debug spam
This commit is contained in:
Justin Clarke Casey
2008-03-12 17:02:08 +00:00
parent fc551ef127
commit 42123770de
5 changed files with 20 additions and 11 deletions

View File

@@ -139,8 +139,8 @@ namespace OpenSim.Region.Environment.Modules
if (texture == null || texture.Data == null)
{
m_log.DebugFormat(
"[USER TEXTURE DOWNLOAD SERVICE]: Queueing TextureNotFoundSender for {0}",
textureID);
"[USER TEXTURE DOWNLOAD SERVICE]: Queueing TextureNotFoundSender for {0}, client {1}",
textureID, m_client.AgentId);
ITextureSender textureNotFoundSender = new TextureNotFoundSender(m_client, textureID);
EnqueueTextureSender(textureNotFoundSender);