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/llerror.cpp | |
parent | 83ec9ebfbd602771dbc45c08fe203044b5ce3527 (diff) |
improve fatal hook logging
Diffstat (limited to 'indra/llcommon/llerror.cpp')
-rw-r--r-- | indra/llcommon/llerror.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index da68117ff5..df8443bd7a 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -723,13 +723,13 @@ namespace LLError { SettingsConfigPtr s = Settings::getInstance()->getSettingsConfig(); s->mFatalHook = fatal_hook; - LL_DEBUGS("FatalHook") << "set fatal hook to " << fatal_hook << LL_ENDL; + LL_DEBUGS("FatalHook") << "set fatal hook to " << reinterpret_cast<void*>(fatal_hook) << LL_ENDL; } FatalHook getFatalHook() { SettingsConfigPtr s = Settings::getInstance()->getSettingsConfig(); - LL_DEBUGS("FatalHook") << "read fatal hook " << s->mFatalHook << LL_ENDL; + LL_DEBUGS("FatalHook") << "read fatal hook " << reinterpret_cast<void*>(s->mFatalHook) << LL_ENDL; return s->mFatalHook; } |