From 24ed3ec516fac123a531f7a48d10b29f2ab9aa39 Mon Sep 17 00:00:00 2001 From: Dirk Jahnke Date: Fri, 8 Jun 2018 16:49:33 +0200 Subject: [PATCH] Removed print comment for every sample (set debug.level to 3 to get the messages from MQTT) --- fs/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/init.js b/fs/init.js index 5c0abec..8e204a6 100755 --- a/fs/init.js +++ b/fs/init.js @@ -100,7 +100,7 @@ let readSensors = Timer.set(sampleTime_ms, Timer.REPEAT, function() { if (sendMqtt && mqttConnected) { let jsonDataString = JSON.stringify(jsonData); - print("Try to send MQTT message: ", jsonDataString, "To:", mqttTopic); + // print("Try to send MQTT message: ", jsonDataString, "To:", mqttTopic); MQTT.pub(mqttTopic, jsonDataString, 1, true); }