From ef498d408292a793c22583446bc7fb4223d83f80 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 9 Nov 2020 15:57:59 +0000 Subject: [PATCH] Add a little debug to send config (reports) --- hblink.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hblink.py b/hblink.py index 83b67ad..01464b6 100755 --- a/hblink.py +++ b/hblink.py @@ -729,6 +729,7 @@ class reportFactory(Factory): def send_config(self): serialized = pickle.dumps(self._config['SYSTEMS'], protocol=2) #.decode('utf-8', errors='ignore') #pickle.HIGHEST_PROTOCOL) + logger.debug('(REPORT) Send config') self.send_clients(b''.join([REPORT_OPCODES['CONFIG_SND'], serialized]))