From 2f3692293e4cc57b66185d80d6e31c8b81b29a6e Mon Sep 17 00:00:00 2001 From: Nav Date: Thu, 15 Sep 2022 20:20:25 +0100 Subject: [PATCH] Tidying --- src/Insight/Insight.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Insight/Insight.cpp b/src/Insight/Insight.cpp index 53b1edac..57623f3a 100644 --- a/src/Insight/Insight.cpp +++ b/src/Insight/Insight.cpp @@ -219,9 +219,9 @@ namespace Bloom auto* workerThread = workerPair.second; if (workerThread != nullptr && workerThread->isRunning()) { - Logger::debug("Stopping InsightWorker" + std::to_string(workerId) + " thread"); + Logger::debug("Stopping InsightWorker" + std::to_string(workerId)); workerThread->quit(); - Logger::debug("Waiting for InsightWorker" + std::to_string(workerId) + " thread to stop"); + Logger::debug("Waiting for InsightWorker" + std::to_string(workerId) + " to stop"); workerThread->wait(); } }