summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2015-03-19 17:38:57 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2015-03-19 17:38:57 -0400
commit779d5ac56e539638d11c80ad6ab5e56b86b0bcb3 (patch)
treecf5d805e066b46a90b457bf2e7d68db11734b0e3
parent8963185f5bea5af8ede04f41423ae1f822d80899 (diff)
MAINT-4917 WIP - debug line added.
-rwxr-xr-xindra/newview/llattachmentsmgr.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llattachmentsmgr.cpp b/indra/newview/llattachmentsmgr.cpp
index b00ccd2d40..285824f261 100755
--- a/indra/newview/llattachmentsmgr.cpp
+++ b/indra/newview/llattachmentsmgr.cpp
@@ -294,6 +294,8 @@ void LLAttachmentsMgr::expireOldAttachmentRequests()
++it;
if (it->second.getElapsedTimeF32() > MAX_ATTACHMENT_REQUEST_LIFETIME)
{
+ LL_DEBUGS("Avatar") << "ATT expiring request for attachment item_id " << curr_it->first
+ << " after " << MAX_ATTACHMENT_REQUEST_LIFETIME << " seconds" << LL_ENDL;
mAttachmentRequests.erase(curr_it);
}
}