diff options
| author | Oz Linden <oz@lindenlab.com> | 2019-09-24 14:27:21 -0400 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2019-09-24 14:27:21 -0400 |
| commit | d0619f8e476c1c5118ae926dfe1746f1dda986d8 (patch) | |
| tree | ce86cf3f6d4362041d50579beda45a54fc6d848f /indra/llcommon/llleap.cpp | |
| parent | 83ec9ebfbd602771dbc45c08fe203044b5ce3527 (diff) | |
improve fatal hook logging
Diffstat (limited to 'indra/llcommon/llleap.cpp')
| -rw-r--r-- | indra/llcommon/llleap.cpp | 2 |
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; } |
