From 1ff79a430d9d55cbb4b4ba55018c791a8a933916 Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Thu, 9 Jun 2022 11:19:21 -0400
Subject: [PATCH] SL-17483: Fix ThreadPool::getConfiguredWidth() compile error.

Log ThreadPoolSizes at DEBUG level, not INFO.
---
 indra/llcommon/threadpool.cpp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/indra/llcommon/threadpool.cpp b/indra/llcommon/threadpool.cpp
index 10d67abf371..e8daf549efd 100644
--- a/indra/llcommon/threadpool.cpp
+++ b/indra/llcommon/threadpool.cpp
@@ -91,7 +91,7 @@ void LL::ThreadPool::run()
 }
 
 //static
-size_t LL::ThreadPool::getConfiguredWidth(const std::string& name, size_t dft=0)
+size_t LL::ThreadPool::getConfiguredWidth(const std::string& name, size_t dft)
 {
     LLSD poolSizes{ LL::CommonControl::get("Global", "ThreadPoolSizes") };
     // "ThreadPoolSizes" is actually a map containing the sizes of interest --
@@ -112,8 +112,7 @@ size_t LL::ThreadPool::getConfiguredWidth(const std::string& name, size_t dft=0)
     }
     else
     {
-        //LL_DEBUGS
-        LL_INFOS("ThreadPool") << "ThreadPoolSizes = " << poolSizes << LL_ENDL;
+        LL_DEBUGS("ThreadPool") << "ThreadPoolSizes = " << poolSizes << LL_ENDL;
     }
     // LLSD treats an undefined value as an empty map when asked to retrieve a
     // key, so we don't need this to be conditional.
-- 
GitLab