From 3bab2a0b8d4a0272bf2f361773874681119126a9 Mon Sep 17 00:00:00 2001 From: Nicholas O'Leary Date: Mon, 14 Oct 2013 23:19:01 +0100 Subject: [PATCH] Remove console.log from exec node --- nodes/core/75-exec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/core/75-exec.js b/nodes/core/75-exec.js index 38396bb5c..30e7b5c44 100644 --- a/nodes/core/75-exec.js +++ b/nodes/core/75-exec.js @@ -34,7 +34,7 @@ function ExecNode(n) { // then prepend with the msg.payload var arg = node.append.split(","); if (msg.payload != " ") { arg.unshift(msg.payload); } - console.log(arg); + //console.log(arg); var ex = spawn(node.cmd,arg); ex.stdout.on('data', function (data) { //console.log('[exec] stdout: ' + data);