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

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.
parent 96467f09
No related branches found
No related tags found
No related merge requests found
......@@ -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())
{
......
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