We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef23814 commit c08461fCopy full SHA for c08461f
index.js
@@ -112,8 +112,8 @@ RedisClient.prototype.install_stream_listeners = function () {
112
});
113
114
this.stream.on('data', function (buffer_from_socket) {
115
- // The data.toString() has a significant impact on big chunks and therefor this should only be used if necessary
116
- debug('Net read ' + this.address + ' id ' + this.connection_id); // + ': ' + data.toString());
+ // The buffer_from_socket.toString() has a significant impact on big chunks and therefor this should only be used if necessary
+ debug('Net read ' + self.address + ' id ' + self.connection_id); // + ': ' + buffer_from_socket.toString());
117
self.reply_parser.execute(buffer_from_socket);
118
119
0 commit comments