From 58fbcf6f38f4ace40577f183884e23bfe9914cd9 Mon Sep 17 00:00:00 2001 From: Ken Fehling Date: Sat, 30 Apr 2016 20:31:58 -0400 Subject: [PATCH] Fixed typo --- mqtt-exec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mqtt-exec.js b/mqtt-exec.js index 51981a6..9258597 100755 --- a/mqtt-exec.js +++ b/mqtt-exec.js @@ -59,7 +59,7 @@ c.on('connect', function() { var message = message.replace(/"/g, "\\\""); executeShellCommand(topic,message); var topic_outgoing = topic.replace(/\/set/g,''); - console.log("Reportig value back to topic: " + topic_outgoing); + console.log("Reporting value back to topic: " + topic_outgoing); c.publish(topic_outgoing,message,{retain: true}); }); });