diff options
Diffstat (limited to 'src/gpg/model/GpgKey.h')
-rw-r--r-- | src/gpg/model/GpgKey.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpg/model/GpgKey.h b/src/gpg/model/GpgKey.h index 5ddfa94b..4acfa45f 100644 --- a/src/gpg/model/GpgKey.h +++ b/src/gpg/model/GpgKey.h @@ -153,7 +153,7 @@ class GpgKey { private: struct _key_ref_deletor { void operator()(gpgme_key_t _key) { - DLOG(INFO) << "Called" << _key; + DLOG(INFO) << _("Called") << _key; if (_key != nullptr) gpgme_key_unref(_key); } }; |