Skip to content
Snippets Groups Projects
Commit 8118762c authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

MAINT-5011: Add log tag to LOG_UNHANDLED_EXCEPTION() log messages.

parent 6b241228
No related branches found
No related tags found
No related merge requests found
...@@ -29,8 +29,8 @@ void log_unhandled_exception_(LLError::ELevel level, ...@@ -29,8 +29,8 @@ void log_unhandled_exception_(LLError::ELevel level,
{ {
// log same message but allow caller-specified severity level // log same message but allow caller-specified severity level
// lllog() is the macro underlying LL_ERRS(), LL_WARNS() et al. // lllog() is the macro underlying LL_ERRS(), LL_WARNS() et al.
lllog(level, false) << file << "(" << line << "): Unhandled exception caught in " lllog(level, false, "LLException")
<< pretty_function; << file << "(" << line << "): Unhandled exception caught in " << pretty_function;
if (! context.empty()) if (! context.empty())
{ {
LL_CONT << ": " << context; LL_CONT << ": " << context;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment