summaryrefslogtreecommitdiff
path: root/indra/llcommon/llleap.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2019-09-24 14:27:21 -0400
committerOz Linden <oz@lindenlab.com>2019-09-24 14:27:21 -0400
commitd0619f8e476c1c5118ae926dfe1746f1dda986d8 (patch)
treece86cf3f6d4362041d50579beda45a54fc6d848f /indra/llcommon/llleap.cpp
parent83ec9ebfbd602771dbc45c08fe203044b5ce3527 (diff)
improve fatal hook logging
Diffstat (limited to 'indra/llcommon/llleap.cpp')
-rw-r--r--indra/llcommon/llleap.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llcommon/llleap.cpp b/indra/llcommon/llleap.cpp
index 161d25bc34..bb32c73d04 100644
--- a/indra/llcommon/llleap.cpp
+++ b/indra/llcommon/llleap.cpp
@@ -67,6 +67,7 @@ public:
// this class or method name.
mListener(new LLLeapListener(boost::bind(&LLLeapImpl::connect, this, _1, _2)))
{
+ LL_DEBUGS("FatalHook") << "previous fatal hook was " <<reinterpret_cast<void*>(mPrevFatalHook) << LL_ENDL;
// Rule out unpopulated Params block
if (! cparams.executable.isProvided())
{
@@ -398,6 +399,7 @@ public:
}
// forward the call to the previous FatalHook, default to crashing if there isn't one
+ LL_DEBUGS("FatalHook") << "end" << LL_ENDL;
return mPrevFatalHook ? mPrevFatalHook(error) : LLError::ERR_CRASH;
}