From e63c11b137f9402b56eacdc530b0435afeafaa7f Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Fri, 8 Jan 2021 12:56:36 +0100 Subject: [PATCH] Adaption to updated modules --- smarthome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smarthome.py b/smarthome.py index a8e14f1..387424d 100644 --- a/smarthome.py +++ b/smarthome.py @@ -121,7 +121,7 @@ class WetationFrameProt(gui.Wetation): cn = self.PROT_NAMES[prot_id] logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__ + '.' + cn) logger.info('Initiating communication channel') - c_tcp = tcp_socket.tcp_client_stp(self.PROT_IPS[prot_id], self.PROT_PORTS[prot_id], rx_log_lvl=logging.DEBUG) + c_tcp = tcp_socket.tcp_client_stp(self.PROT_IPS[prot_id], self.PROT_PORTS[prot_id]) self.__prot__[prot_id] = self.PROT_CLASSES[prot_id](c_tcp, secret=self.PROT_SECRETS[prot_id], auto_auth=True, channel_name=cn) # self.__prot__[prot_id].register_callback(None, None, self.__prot_resp_callbacks__, prot_id)