From f695aa832e2c4690131e63eb0b20c02012e73c11 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sun, 11 Feb 2024 14:41:38 +0100 Subject: [PATCH] mqtt_queue: log what gets put into the queue --- mqtt_queue.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mqtt_queue.py b/mqtt_queue.py index f567628..cc191c5 100644 --- a/mqtt_queue.py +++ b/mqtt_queue.py @@ -62,6 +62,7 @@ class MQTTQueue: text, ) ) + LOG.info(f'Put queue item: {data["level"].lower()} {data["component"]} : {text}') else: LOG.info(f'Ignoring message for {data["component"]} because it was filtered') except Exception as e: