From f3cf58c8ffc8bd3a87ff1e6ae4451c251e5b86a2 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Mon, 22 Jan 2018 23:15:20 +0000 Subject: [PATCH] Remove mqtt debug --- nodes/core/io/10-mqtt.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nodes/core/io/10-mqtt.js b/nodes/core/io/10-mqtt.js index ee83e2d0b..7576a121c 100644 --- a/nodes/core/io/10-mqtt.js +++ b/nodes/core/io/10-mqtt.js @@ -136,7 +136,7 @@ module.exports = function(RED) { tlsNode.addTLSOptions(this.options); } } - console.log(this.brokerurl,this.options); + // console.log(this.brokerurl,this.options); // If there's no rejectUnauthorized already, then this could be an // old config where this option was provided on the broker node and @@ -182,7 +182,6 @@ module.exports = function(RED) { }; this.connect = function () { - console.log("CONNECT"); if (!node.connected && !node.connecting) { node.connecting = true; node.client = mqtt.connect(node.brokerurl ,node.options);