diff options
author | saturneric <[email protected]> | 2024-01-05 13:28:59 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-05 13:28:59 +0000 |
commit | 57438e754cd857ef48c3960eefe2e957716acd80 (patch) | |
tree | 79d76b98d52b98110801a33f24b45ad7a60c7462 /src/core/function/gpg/GpgCommandExecutor.cpp | |
parent | feat: integrate logging api to core (diff) | |
download | GpgFrontend-57438e754cd857ef48c3960eefe2e957716acd80.tar.gz GpgFrontend-57438e754cd857ef48c3960eefe2e957716acd80.zip |
fix: slove a multi-threads issue at task model
Diffstat (limited to 'src/core/function/gpg/GpgCommandExecutor.cpp')
-rw-r--r-- | src/core/function/gpg/GpgCommandExecutor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/function/gpg/GpgCommandExecutor.cpp b/src/core/function/gpg/GpgCommandExecutor.cpp index fa4b7dbd..fd6d6099 100644 --- a/src/core/function/gpg/GpgCommandExecutor.cpp +++ b/src/core/function/gpg/GpgCommandExecutor.cpp @@ -234,7 +234,7 @@ void GpgCommandExecutor::ExecuteConcurrentlySync(ExecuteContexts contexts) { for (auto &context : contexts) { const auto &cmd = context.cmd; - GF_CORE_LOG_DEBUG("gpg concurrently called cmd {}", cmd); + GF_CORE_LOG_DEBUG("gpg concurrently called cmd: {}", cmd); Thread::Task *task = BuildTaskFromExecCtx(context); |