Add a little debug to send config (reports)

This commit is contained in:
Simon 2020-11-09 15:57:59 +00:00
parent 18ae439125
commit ef498d4082
1 changed files with 1 additions and 0 deletions

View File

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