From e1f1f4b6f67130c7483c3d430e9fd8580f710c0d Mon Sep 17 00:00:00 2001 From: Esteban Ordano Date: Thu, 11 Dec 2014 16:11:47 -0300 Subject: [PATCH] Hotfix: Remove console.log --- lib/transport/messages.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/transport/messages.js b/lib/transport/messages.js index 5b0fb1918..e196c1f5c 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); };