[L4] Fix logging level on error message

This commit is contained in:
2026-03-24 14:03:29 +02:00
parent 5e890d4f03
commit d1b6c0eed1

View File

@@ -42,7 +42,7 @@ class AgentMQTTAdapter(AgentGateway):
else:
logging.error("Failed to send data: Hub gateway is unavailable.")
except Exception as e:
logging.info(f"Error processing MQTT message: {e}")
logging.error(f"Error processing MQTT message: {e}")
def connect(self):
self.client.on_connect = self.on_connect