Remove console.log from exec node

This commit is contained in:
Nicholas O'Leary 2013-10-14 23:19:01 +01:00
parent e6fe875e25
commit 3bab2a0b8d
1 changed files with 1 additions and 1 deletions

View File

@ -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);