summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2019-09-24 15:33:42 -0400
committerOz Linden <oz@lindenlab.com>2019-09-24 15:33:42 -0400
commit092bf4220eeaea0ae7765ea3cb49f122fb3e3dff (patch)
tree826d43bfd23e2b5fbf0ced84c4294c1ca3ff71f4 /indra
parent581b6fe5234110efa9c27751ed2c9e062ae8f248 (diff)
further simplify function pointer logging
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/llerror.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp
index 1f947a0a74..327c3ad537 100644
--- a/indra/llcommon/llerror.cpp
+++ b/indra/llcommon/llerror.cpp
@@ -722,7 +722,7 @@ namespace LLError
void setFatalHook(const FatalHook& fatal_hook)
{
SettingsConfigPtr s = Settings::getInstance()->getSettingsConfig();
- LL_DEBUGS("FatalHook") << "set fatal hook to "(fatal_hook ? "non-null" : "null")
+ LL_DEBUGS("FatalHook") << "set fatal hook to " << (fatal_hook ? "non-null" : "null")
<< " was " << (s->mFatalHook ? "non-null" : "null")
<< LL_ENDL;
s->mFatalHook = fatal_hook;