diff options
Diffstat (limited to 'src/core/thread/TaskRunner.cpp')
-rw-r--r-- | src/core/thread/TaskRunner.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core/thread/TaskRunner.cpp b/src/core/thread/TaskRunner.cpp index a4a97b38..6d5edd93 100644 --- a/src/core/thread/TaskRunner.cpp +++ b/src/core/thread/TaskRunner.cpp @@ -39,10 +39,7 @@ namespace GpgFrontend::Thread { class TaskRunner::Impl : public QThread { public: - Impl() { - SPDLOG_TRACE("task runner created, thread id: {}", - QThread::currentThread()->currentThreadId()); - } + Impl() : QThread(nullptr) {} void PostTask(Task* task) { if (task == nullptr) { @@ -53,7 +50,8 @@ class TaskRunner::Impl : public QThread { task->setParent(nullptr); task->moveToThread(this); - SPDLOG_TRACE("runner starts task: {}", task->GetFullID()); + SPDLOG_TRACE("runner starts task: {} at thread: {}", task->GetFullID(), + this->currentThreadId()); task->SafelyRun(); } |