mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
remove excess console.log from mpd music node
This commit is contained in:
parent
ab168fe26f
commit
28e82c1351
@ -35,9 +35,9 @@ function MPDOut(n) {
|
|||||||
//node.mpc.command(msg.payload);
|
//node.mpc.command(msg.payload);
|
||||||
node.mpc.command(msg.payload, msg.param, function(err, results) {
|
node.mpc.command(msg.payload, msg.param, function(err, results) {
|
||||||
if (err) { console.log("MPD: Error:",err); }
|
if (err) { console.log("MPD: Error:",err); }
|
||||||
else { node.error(results); }
|
//else { console.log(results); }
|
||||||
});
|
});
|
||||||
} catch(err) { console.log("MPD: Error:",err); }
|
} catch (err) { console.log("MPD: Error:",err); }
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user