From af7c4ade1d711d273d476319506dbf095588d071 Mon Sep 17 00:00:00 2001 From: James Pattinson Date: Sat, 7 Feb 2026 14:54:24 +0000 Subject: [PATCH] remove heartbeat from logs --- client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/client.py b/client.py index 6e39098..cd1aece 100644 --- a/client.py +++ b/client.py @@ -158,7 +158,6 @@ def heartbeat(client): "port": MQTT_PORT } client.publish(MQTT_TOPIC_HEARTBEAT, json.dumps(heartbeat_msg)) - print(f"Published heartbeat: {heartbeat_msg}") time.sleep(30) # Publish every 30 seconds except Exception as e: print(f"Error publishing heartbeat: {e}")