From 56a83d2115f3dc55902a3a9aa43afbfeeb4a462a Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Thu, 1 Sep 2016 19:53:56 -0400
Subject: 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.
---
 indra/llcommon/llsingleton.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'indra')

diff --git a/indra/llcommon/llsingleton.cpp b/indra/llcommon/llsingleton.cpp
index 4212014e1b..cd5c2a7f0e 100644
--- a/indra/llcommon/llsingleton.cpp
+++ b/indra/llcommon/llsingleton.cpp
@@ -353,7 +353,7 @@ void log(LLError::ELevel level,
     // around and around we go.
     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
     {
-- 
cgit v1.2.3