diff options
author | andreykproductengine <akleshchev@productengine.com> | 2016-10-11 18:16:11 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2016-10-11 18:16:11 +0300 |
commit | 791b0de2621dc5f4041db8f3908c63d30fec8c9b (patch) | |
tree | 8fb68a807ee33c406bf9f1c3aa703a751b129a66 /indra/newview/lldrawpoolalpha.cpp | |
parent | f5fcf54cd9e1356e33a629eaaf1602319e5da8df (diff) |
MAINT-6790 Fixing log spam
Diffstat (limited to 'indra/newview/lldrawpoolalpha.cpp')
-rw-r--r-- | indra/newview/lldrawpoolalpha.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/lldrawpoolalpha.cpp b/indra/newview/lldrawpoolalpha.cpp index 84ead0bdde..60056ac21d 100644 --- a/indra/newview/lldrawpoolalpha.cpp +++ b/indra/newview/lldrawpoolalpha.cpp @@ -401,7 +401,9 @@ void LLDrawPoolAlpha::renderAlpha(U32 mask, S32 pass) if ((params.mVertexBuffer->getTypeMask() & mask) != mask) { //FIXME! - LL_WARNS() << "Missing required components, skipping render batch." << LL_ENDL; + LL_WARNS_ONCE() << "Missing required components, expected mask: " << mask + << " present: " << (params.mVertexBuffer->getTypeMask() & mask) + << ". Skipping render batch." << LL_ENDL; continue; } |