diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2019-06-28 00:15:17 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2019-07-01 19:42:45 +0200 |
commit | 29a4ea389f75c918706ab64dac94b2cb229069bf (patch) | |
tree | 841dc6985f1239fc3c2e103b80c41c5948ae4724 | |
parent | 5500e771a427245d3d02eb39307c0e2dfdc950ff (diff) | |
download | poezio-29a4ea389f75c918706ab64dac94b2cb229069bf.tar.gz poezio-29a4ea389f75c918706ab64dac94b2cb229069bf.tar.bz2 poezio-29a4ea389f75c918706ab64dac94b2cb229069bf.tar.xz poezio-29a4ea389f75c918706ab64dac94b2cb229069bf.zip |
e2ee-api: Fix log message
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | poezio/plugin_e2ee.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py index b2afe867..ef58a051 100644 --- a/poezio/plugin_e2ee.py +++ b/poezio/plugin_e2ee.py @@ -186,7 +186,7 @@ class E2EEPlugin(BasePlugin): if body is not None: self.core.xmpp['xep_0380'].replace_body_with_eme(message) - log.debug('Decrypted %s message: %r', self.encryption_name, message['body']) + log.debug('Encrypted %s message: %r', self.encryption_name, message['body']) return None def decrypt(self, _message: Message, tab: ChatTabs): |