summaryrefslogtreecommitdiff
path: root/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2019-05-27 17:32:53 +0300
committerandreykproductengine <andreykproductengine@lindenlab.com>2019-05-27 17:32:53 +0300
commit562fe5bf6345fe79f91c657f4d1a30bfc07fbb34 (patch)
tree54f1b80446ebc3b0ded57046d0b6067199a8935c /indra/newview/llstartup.cpp
parent8c32aa0dd180e6c11d3d178cc82cc7490e9d824d (diff)
SL-10908 Output class names we are clearing on startup
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r--indra/newview/llstartup.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 0d99b35aee..9397356d40 100644
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -348,6 +348,14 @@ bool idle_startup()
// to work.
gIdleCallbacks.callFunctions();
gViewerWindow->updateUI();
+
+ // There is a crash on updateClass, this is an attempt to get more information
+ if (LLMortician::graveyardCount())
+ {
+ std::stringstream log_stream;
+ LLMortician::logClass(log_stream);
+ LL_INFOS() << log_stream.str() << LL_ENDL;
+ }
LLMortician::updateClass();
const std::string delims (" ");