remove excess console.log from mpd music node

This commit is contained in:
Dave C-J 2013-11-04 20:35:49 +00:00
parent ab168fe26f
commit 28e82c1351
1 changed files with 2 additions and 2 deletions

View File

@ -35,9 +35,9 @@ function MPDOut(n) {
//node.mpc.command(msg.payload);
node.mpc.command(msg.payload, msg.param, function(err, results) {
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); }
}
});