summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-08-30 16:16:26 +0200
committerAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-09-01 17:25:01 +0200
commitf7beaa49af4a475fb11d61a88d504d8539876294 (patch)
treeda24e5e74758a956ae6ea78001988ef10513341e /indra
parent0d721149fb71fdf6e5b4912836f70b9447062079 (diff)
SL-18366 Crash in LLCullResult::assertDrawMapsEmpty - make the error message more informative
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llspatialpartition.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp
index 17c834326c..afcf566974 100644
--- a/indra/newview/llspatialpartition.cpp
+++ b/indra/newview/llspatialpartition.cpp
@@ -4421,7 +4421,8 @@ void LLCullResult::assertDrawMapsEmpty()
{
if (mRenderMapSize[i] != 0)
{
- LL_ERRS() << "Stale LLDrawInfo's in LLCullResult!" << LL_ENDL;
+ LL_ERRS() << "Stale LLDrawInfo's in LLCullResult!"
+ << " (mRenderMapSize[" << i << "] = " << mRenderMapSize[i] << ")" << LL_ENDL;
}
}
}