summaryrefslogtreecommitdiff
path: root/indra/llcommon/llerror.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/llerror.cpp
parent83ec9ebfbd602771dbc45c08fe203044b5ce3527 (diff)
improve fatal hook logging
Diffstat (limited to 'indra/llcommon/llerror.cpp')
-rw-r--r--indra/llcommon/llerror.cpp4
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;
}