From 5a3606c8fb081ffcbdab0c02e5bb07ea1455bf0e Mon Sep 17 00:00:00 2001 From: MariusBaldovin Date: Fri, 1 Nov 2024 12:38:01 +0000 Subject: [PATCH] remove the mqtt debug line --- framework/python/src/common/mqtt.py | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/python/src/common/mqtt.py b/framework/python/src/common/mqtt.py index 8ca52a785..b98b4ab1b 100644 --- a/framework/python/src/common/mqtt.py +++ b/framework/python/src/common/mqtt.py @@ -37,7 +37,6 @@ def _connect(self): """Establish connection to MQTT broker""" if not self._client.is_connected(): try: - LOGGER.debug(f"Connecting to broker {self._host}:{WEBSOCKETS_PORT}") self._client.connect(self._host, WEBSOCKETS_PORT, 60) except (ValueError, ConnectionRefusedError): LOGGER.error("Cannot connect to MQTT broker")