diff options
Diffstat (limited to 'src/core/thread/CtxCheckTask.cpp')
-rw-r--r-- | src/core/thread/CtxCheckTask.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/thread/CtxCheckTask.cpp b/src/core/thread/CtxCheckTask.cpp index 997dd341..9735fcaa 100644 --- a/src/core/thread/CtxCheckTask.cpp +++ b/src/core/thread/CtxCheckTask.cpp @@ -30,8 +30,9 @@ #include "core/GpgCoreInit.h" #include "core/common/CoreCommonUtil.h" #include "core/function/gpg/GpgKeyGetter.h" +#include "thread/Task.h" -GpgFrontend::Thread::CtxCheckTask::CtxCheckTask() { +GpgFrontend::Thread::CtxCheckTask::CtxCheckTask() : Task("ctx_check_task") { connect(this, &CtxCheckTask::SignalGnupgNotInstall, CoreCommonUtil::GetInstance(), &CoreCommonUtil::SignalGnupgNotInstall); @@ -48,4 +49,6 @@ void GpgFrontend::Thread::CtxCheckTask::Run() { // Try flushing key cache else GpgFrontend::GpgKeyGetter::GetInstance().FlushKeyCache(); + + SPDLOG_DEBUG("ctx check task runnable done"); } |