summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/threadpool.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/llcommon/threadpool.cpp b/indra/llcommon/threadpool.cpp
index 10d67abf37..e8daf549ef 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.