From 03356e98fd4fb510ad1d654dd37c91dff61c0609 Mon Sep 17 00:00:00 2001 From: KF Date: Tue, 27 Aug 2019 21:14:18 -0500 Subject: [PATCH] * log unhandled daemon queue commands --- onionr/communicatorutils/daemonqueuehandler.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/onionr/communicatorutils/daemonqueuehandler.py b/onionr/communicatorutils/daemonqueuehandler.py index 73944271..71f4cb26 100755 --- a/onionr/communicatorutils/daemonqueuehandler.py +++ b/onionr/communicatorutils/daemonqueuehandler.py @@ -60,6 +60,8 @@ def handle_daemon_commands(comm_inst): i.count = (i.frequency - 1) elif cmd[0] == 'uploadBlock': comm_inst.blocksToUpload.append(cmd[1]) + else: + logger.debug('Received daemon queue command unable to be handled: %s' % (cmd[0],)) if cmd[0] not in ('', None): if response != '':