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

remove console.log

This commit is contained in:
Leibale
2024-02-12 18:38:18 -05:00
parent 65eb69a787
commit cc85112e54

View File

@@ -460,9 +460,7 @@ export default class RedisClient<
})
.on('reconnecting', () => this.emit('reconnecting'))
.on('drain', () => this.#maybeScheduleWrite())
.on('end', () => {
console.log('socket on end, emitting end', this.emit('end'));
});
.on('end', () => this.emit('end'));
}
#pingTimer?: NodeJS.Timeout;