Skip to content
Snippets Groups Projects
Commit 56a83d21 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 a1741be7
No related branches found
No related tags found
No related merge requests found
...@@ -353,7 +353,7 @@ void log(LLError::ELevel level, ...@@ -353,7 +353,7 @@ void log(LLError::ELevel level,
// around and around we go. // around and around we go.
if (LLError::is_available()) if (LLError::is_available())
{ {
lllog(level, false, "LLSingleton") << p1 << p2 << p3 << p4 << LL_ENDL; LL_VLOGS(level, "LLSingleton") << p1 << p2 << p3 << p4 << LL_ENDL;
} }
else else
{ {
......
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