diff --git a/lib/transport/messages.js b/lib/transport/messages.js index 5b0fb19..e196c1f 100644 --- a/lib/transport/messages.js +++ b/lib/transport/messages.js @@ -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); };