aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/model/GpgSignResult.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-26 16:24:34 +0000
committersaturneric <[email protected]>2024-07-26 16:24:34 +0000
commit37a62a8d0b590710b902376ca3320cc05e954b63 (patch)
tree349ecff21e5cf53d8eedbae7886404417ecdad05 /src/core/model/GpgSignResult.cpp
parentfix: correct urls at appdata.xml (diff)
downloadGpgFrontend-37a62a8d0b590710b902376ca3320cc05e954b63.tar.gz
GpgFrontend-37a62a8d0b590710b902376ca3320cc05e954b63.zip
feat: remove spdlog and clean up log
Diffstat (limited to 'src/core/model/GpgSignResult.cpp')
-rw-r--r--src/core/model/GpgSignResult.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/model/GpgSignResult.cpp b/src/core/model/GpgSignResult.cpp
index 4a0e5f35..50f6cfb7 100644
--- a/src/core/model/GpgSignResult.cpp
+++ b/src/core/model/GpgSignResult.cpp
@@ -55,9 +55,9 @@ auto GpgSignResult::InvalidSigners()
try {
result.emplace_back(QString{invalid_key->fpr}, invalid_key->reason);
} catch (...) {
- GF_CORE_LOG_ERROR(
- "caught exception when processing invalid_signers, "
- "maybe nullptr of fpr");
+ qCWarning(core,
+ "caught exception when processing invalid_signers, "
+ "maybe nullptr of fpr");
}
}
return result;