summaryrefslogtreecommitdiff
path: root/indra/llcommon/llleap.cpp
diff options
context:
space:
mode:
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;
}