Added id to InsightWorker objects

This commit is contained in:
Nav
2022-09-08 15:29:54 +01:00
parent 7a8efcd7fc
commit 77cd13bf46
3 changed files with 12 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ namespace Bloom
using Bloom::Targets::TargetState;
void InsightWorker::startup() {
Logger::debug("Starting InsightWorker thread");
Logger::debug("Starting InsightWorker" + std::to_string(this->id) + " thread");
QObject::connect(
InsightSignals::instance(),
@@ -21,6 +21,7 @@ namespace Bloom
&InsightWorker::executeTasks
);
Logger::debug("InsightWorker" + std::to_string(this->id) + " thread ready");
emit this->ready();
}