From e63157c2abdf79800b1485fa74a51f7c48b3842e Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 7 May 2019 01:41:41 +0200 Subject: [PATCH] logging: fix another call with multiple args did a search with following regex now: logger\..*\(.*, --- electrum/plugins/cosigner_pool/qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/plugins/cosigner_pool/qt.py b/electrum/plugins/cosigner_pool/qt.py index d1bad9580..531cc1700 100644 --- a/electrum/plugins/cosigner_pool/qt.py +++ b/electrum/plugins/cosigner_pool/qt.py @@ -193,7 +193,7 @@ class Plugin(BasePlugin): WaitingDialog(window, msg, task, on_success, on_failure) def on_receive(self, keyhash, message): - self.logger.info("signal arrived for", keyhash) + self.logger.info(f"signal arrived for {keyhash}") for key, _hash, window in self.keys: if _hash == keyhash: break