Hotfix: Remove console.log

This commit is contained in:
Esteban Ordano 2014-12-11 16:11:47 -03:00
parent 005cf074fd
commit e1f1f4b6f6
1 changed files with 0 additions and 3 deletions

View File

@ -48,9 +48,6 @@ var parseMessage = function(network, dataBuffer) {
return;
}
console.log(command, 'FULL MESSAGE', dataBuffer.slice(0, messageLength).toString('hex'));
console.log(command, 'PAYLOAD MESSAGE', payload.toString('hex'));
dataBuffer.skip(messageLength);
return Message.buildMessage(command, payload);
};