From 4e5e4635aa7fccb47e8bc909c0a1436e157079eb Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Wed, 28 Oct 2015 00:58:31 +0100 Subject: [PATCH] Use debug statement for incoming data --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 94d213e92f..197ad54282 100644 --- a/index.js +++ b/index.js @@ -116,7 +116,7 @@ RedisClient.prototype.install_stream_listeners = function() { this.stream.on('data', function (buffer_from_socket) { // The data.toString() has a significant impact on big chunks and therefor this should only be used if necessary - // debug('Net read ' + this.address + ' id ' + this.connection_id + ': ' + data.toString()); + debug('Net read ' + this.address + ' id ' + this.connection_id); // + ': ' + data.toString()); self.reply_parser.execute(buffer_from_socket); });