From: Gunnar Beutner Date: Mon, 16 Dec 2013 16:06:05 +0000 (+0100) Subject: Fix a log message. X-Git-Tag: v0.0.6~20^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79e960f7cbb90da27adb770d98e4ba0d0a052e2d;p=icinga2 Fix a log message. Refs #5342 --- diff --git a/lib/base/threadpool.cpp b/lib/base/threadpool.cpp index e4cf9c0ce..3990973a7 100644 --- a/lib/base/threadpool.cpp +++ b/lib/base/threadpool.cpp @@ -323,7 +323,7 @@ void ThreadPool::Queue::SpawnWorker(boost::thread_group& group) { for (size_t i = 0; i < sizeof(Threads) / sizeof(Threads[0]); i++) { if (Threads[i].State == ThreadDead) { - Log(LogDebug, "debug", "Spawning worker thread."); + Log(LogDebug, "base", "Spawning worker thread."); Threads[i] = WorkerThread(ThreadIdle); Threads[i].Thread = group.create_thread(boost::bind(&ThreadPool::WorkerThread::ThreadProc, boost::ref(Threads[i]), boost::ref(*this)));