diff --git a/src/Insight/Insight.cpp b/src/Insight/Insight.cpp index e961ed5d..53b1edac 100644 --- a/src/Insight/Insight.cpp +++ b/src/Insight/Insight.cpp @@ -198,7 +198,7 @@ namespace Bloom }); } - Logger::debug("Starting InsightWorker" + std::to_string(insightWorker->id) + " thread"); + Logger::debug("Starting InsightWorker" + std::to_string(insightWorker->id)); workerThread->start(); } diff --git a/src/Insight/InsightWorker/InsightWorker.cpp b/src/Insight/InsightWorker/InsightWorker.cpp index 4d58d4c5..d1f334a1 100644 --- a/src/Insight/InsightWorker/InsightWorker.cpp +++ b/src/Insight/InsightWorker/InsightWorker.cpp @@ -17,7 +17,7 @@ namespace Bloom QObject::connect(insightSignals, &InsightSignals::taskQueued, this, &InsightWorker::executeTasks); QObject::connect(insightSignals, &InsightSignals::taskProcessed, this, &InsightWorker::executeTasks); - Logger::debug("InsightWorker" + std::to_string(this->id) + " thread ready"); + Logger::debug("InsightWorker" + std::to_string(this->id) + " ready"); emit this->ready(); } diff --git a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp index 46bf292a..d569e5cb 100644 --- a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp @@ -492,7 +492,7 @@ namespace Bloom if (this->selectedVariant == nullptr) { /* - * Given that we haven't been able to select a variant at this point, we will just fallback to the first + * Given that we haven't been able to select a variant at this point, we will just fall back to the first * one that is available. */ this->selectVariant(&(this->supportedVariantsByName.begin()->second));