diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-05-31 21:56:58 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-05-31 21:56:58 +0300 |
commit | 3dd074d5ec83edbc3af3de0f50f8ca6cdfb7ef29 (patch) | |
tree | b507463df1791d71577c37de75f96b40a5da0b5e /indra/newview/llviewertexture.cpp | |
parent | 618446f8df1b664f2ff826d106de5bd65ef09bac (diff) |
SL-11338 Better logging for missing texture reference
Diffstat (limited to 'indra/newview/llviewertexture.cpp')
-rw-r--r-- | indra/newview/llviewertexture.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index a81b3aaef9..93562cfab2 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -3680,9 +3680,9 @@ void LLViewerMediaTexture::removeFace(U32 ch, LLFace* facep) } } - if(te && te->getID().notNull()) //should have a texture + if(te && te->getID().notNull()) //should have a texture but none found { - LL_ERRS() << "mTextureList texture reference number is corrupted." << LL_ENDL; + LL_ERRS() << "mTextureList texture reference number is corrupted. Texture id: " << te->getID() << " List size: " << (U32)mTextureList.size() << LL_ENDL; } } |