diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2016-08-31 17:16:43 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2016-08-31 17:16:43 -0400 |
commit | 8118762c124d2de8db40836a28b8bf12ecbefbf7 (patch) | |
tree | b1302faf8fef78992de73d740a3e769a3bd2ed09 /indra | |
parent | 6b24122857583537495a01f408c6c303f93adb02 (diff) |
MAINT-5011: Add log tag to LOG_UNHANDLED_EXCEPTION() log messages.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llexception.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llexception.cpp b/indra/llcommon/llexception.cpp index 791b115a8c..1c39c0f827 100644 --- a/indra/llcommon/llexception.cpp +++ b/indra/llcommon/llexception.cpp @@ -29,8 +29,8 @@ void log_unhandled_exception_(LLError::ELevel level, { // log same message but allow caller-specified severity level // lllog() is the macro underlying LL_ERRS(), LL_WARNS() et al. - lllog(level, false) << file << "(" << line << "): Unhandled exception caught in " - << pretty_function; + lllog(level, false, "LLException") + << file << "(" << line << "): Unhandled exception caught in " << pretty_function; if (! context.empty()) { LL_CONT << ": " << context; |