diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-03-15 13:26:31 -0400 |
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-03-15 13:26:31 -0400 |
| commit | e288ff9695f4f2fbfc0f3963985c6e0fa61f6403 (patch) | |
| tree | f54c563edaad3c1daba998eaf62f1357e9f8d059 /indra/newview/llviewertexture.cpp | |
| parent | 24a6c3fda2ba3aa1f40ee31b6f1fc025a6623833 (diff) | |
SH-3850 WIP, SH-3959 WIP - added additional debug logging for texture loading
Diffstat (limited to 'indra/newview/llviewertexture.cpp')
| -rwxr-xr-x[-rw-r--r--] | indra/newview/llviewertexture.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index 1d0bda34a7..e0e44cfa1e 100644..100755 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1952,11 +1952,12 @@ bool LLViewerFetchedTexture::updateFetch() } else if (mHasFetcher && !mIsFetching) { - // Only delete requests that haven't receeived any network data for a while + // Only delete requests that haven't received any network data for a while const F32 FETCH_IDLE_TIME = 5.f; if (mLastPacketTimer.getElapsedTimeF32() > FETCH_IDLE_TIME) { -// llinfos << "Deleting request: " << getID() << " Discard: " << current_discard << " <= min:" << mMinDiscardLevel << " or priority == 0: " << decode_priority << llendl; + llinfos << "idle timeout, deleting request: " << getID() << " - is discard: " << current_discard << " <= min:" << mMinDiscardLevel << " or priority == 0: " << decode_priority << "?" << llendl; + LL_DEBUGS("Texture") << "exceeded idle time " << FETCH_IDLE_TIME << ", deleting request: " << getID() << llendl; LLAppViewer::getTextureFetch()->deleteRequest(getID(), true); mHasFetcher = FALSE; } |
