From 6883133cfb6f4e7c0dd1bcc406d2005e680574af Mon Sep 17 00:00:00 2001 From: Arinerron Date: Wed, 18 Apr 2018 20:25:33 -0700 Subject: [PATCH] Fix one bug, create another --- onionr/onionrutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/onionrutils.py b/onionr/onionrutils.py index 30edf2a8..142d2666 100644 --- a/onionr/onionrutils.py +++ b/onionr/onionrutils.py @@ -325,7 +325,7 @@ class OnionrUtils: try: message = self._core._crypto.pubKeyDecrypt(message.replace('-pm-', ''), encodedData=True, anonymous=True) except nacl.exceptions.CryptoError as e: - logger.debug('Unable to decrypt ' + i, error=e) + logger.error('Unable to decrypt ' + i, error=e) pass else: logger.info('Recieved message: ' + message.decode())