1
0

logging: fix another call with multiple args

did a search with following regex now: logger\..*\(.*,
This commit is contained in:
SomberNight
2019-05-07 01:41:41 +02:00
parent 06cff9ac10
commit e63157c2ab

View File

@@ -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