summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2016-09-01 19:46:39 -0400
committerNat Goodspeed <nat@lindenlab.com>2016-09-01 19:46:39 -0400
commit1ed351e28f1134ba06fd9459927d0d146e204fbf (patch)
treebe277986f9394bca47af06c046aeeff6a5d7f9e1 /indra/llcommon
parent96467f09f2ef9eba9c8e1d721349d9cc8f3e1bbb (diff)
MAINT-5011: Use LL_VLOGS() rather than raw lllog() macro.
Raw lllog() doesn't work for varying log level, which is why LL_VLOGS() exists.
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llexception.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llcommon/llexception.cpp b/indra/llcommon/llexception.cpp
index 1c39c0f827..25aa5847a2 100644
--- a/indra/llcommon/llexception.cpp
+++ b/indra/llcommon/llexception.cpp
@@ -28,8 +28,7 @@ void log_unhandled_exception_(LLError::ELevel level,
const std::string& context)
{
// log same message but allow caller-specified severity level
- // lllog() is the macro underlying LL_ERRS(), LL_WARNS() et al.
- lllog(level, false, "LLException")
+ LL_VLOGS(level, "LLException")
<< file << "(" << line << "): Unhandled exception caught in " << pretty_function;
if (! context.empty())
{