Skip to content

Commit 4e5e463

Browse files
author
Ruben Bridgewater
committed
Use debug statement for incoming data
1 parent 790f129 commit 4e5e463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ RedisClient.prototype.install_stream_listeners = function() {
116116

117117
this.stream.on('data', function (buffer_from_socket) {
118118
// The data.toString() has a significant impact on big chunks and therefor this should only be used if necessary
119-
// debug('Net read ' + this.address + ' id ' + this.connection_id + ': ' + data.toString());
119+
debug('Net read ' + this.address + ' id ' + this.connection_id); // + ': ' + data.toString());
120120
self.reply_parser.execute(buffer_from_socket);
121121
});
122122

0 commit comments

Comments
 (0)