From 4dbd444053f5f61a3d638db0abe38795a628cfe7 Mon Sep 17 00:00:00 2001 From: mailchuck Date: Wed, 16 Dec 2015 15:34:16 +0100 Subject: [PATCH] Logging fix --- src/class_singleWorker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/class_singleWorker.py b/src/class_singleWorker.py index 5c0ae4f4..7c04558b 100644 --- a/src/class_singleWorker.py +++ b/src/class_singleWorker.py @@ -899,10 +899,10 @@ class singleWorker(threading.Thread, StoppableThread): payload += encodeVarint(streamNumber) if addressVersionNumber <= 3: payload += ripe - logger.info('making request for pubkey with ripe:', ripe.encode('hex')) + logger.info('making request for pubkey with ripe: %s', ripe.encode('hex')) else: payload += tag - logger.info('making request for v4 pubkey with tag:', tag.encode('hex')) + logger.info('making request for v4 pubkey with tag: %s', tag.encode('hex')) # print 'trial value', trialValue statusbar = 'Doing the computations necessary to request the recipient\'s public key.'