diff --git a/framework/python/src/common/mqtt.py b/framework/python/src/common/mqtt.py index 32cb421eb..c58d24d3f 100644 --- a/framework/python/src/common/mqtt.py +++ b/framework/python/src/common/mqtt.py @@ -33,6 +33,7 @@ class MQTT: def __init__(self) -> None: self._host = WEBSOCKETS_HOST self._client = mqtt_client.Client(mqtt_client.CallbackAPIVersion.VERSION2) + LOGGER.setLevel(logger.logging.INFO) self._client.enable_logger(LOGGER) def _connect(self):