From c1d351a2676d79b83fa459f47e633558323827e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Mon, 12 Feb 2024 23:01:00 +0100 Subject: [PATCH] added debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/app.py b/server/app.py index e25cc0d..3568d9c 100644 --- a/server/app.py +++ b/server/app.py @@ -119,6 +119,7 @@ def mqtt_publisher(universe): # Publish the DMX value to the MQTT topic mqtt_client.publish(topic, payload=value, qos=0, retain=False) + print(str(universe+" "+channel+" "+value)) except Exception as e: print(f"Error in universe {universe}: {e}")