1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Use debug statement for incoming data

This commit is contained in:
Ruben Bridgewater
2015-10-28 00:58:31 +01:00
parent 790f12909b
commit 4e5e4635aa

View File

@@ -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);
});