diff options
author | Saturneric <[email protected]> | 2023-02-11 14:10:09 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-02-11 14:10:09 +0000 |
commit | 6a75817c85b0d4a97cea82ad2331736cff9913cf (patch) | |
tree | 261b01c4dc55a28241694a5e292d9fc5c77b6319 /src/core/thread/TaskRunner.cpp | |
parent | feat: upgrade qt framework to 6.3 (diff) | |
download | GpgFrontend-6a75817c85b0d4a97cea82ad2331736cff9913cf.tar.gz GpgFrontend-6a75817c85b0d4a97cea82ad2331736cff9913cf.zip |
fix: reduce info level logs
Diffstat (limited to 'src/core/thread/TaskRunner.cpp')
-rw-r--r-- | src/core/thread/TaskRunner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/thread/TaskRunner.cpp b/src/core/thread/TaskRunner.cpp index 75fc5d88..dc6ac385 100644 --- a/src/core/thread/TaskRunner.cpp +++ b/src/core/thread/TaskRunner.cpp @@ -65,7 +65,7 @@ void GpgFrontend::Thread::TaskRunner::PostScheduleTask(Task* task, } [[noreturn]] void GpgFrontend::Thread::TaskRunner::run() { - SPDLOG_TRACE("called, thread id: {}", QThread::currentThreadId()); + SPDLOG_TRACE("run, thread id: {}", QThread::currentThreadId()); while (true) { SPDLOG_TRACE("task runner: a new cycle start"); if (tasks.empty()) { |