From 7c3eb881a88f42ca1bf521c6a0b1acb0001a8cb1 Mon Sep 17 00:00:00 2001 From: Leibale Eidelman Date: Wed, 17 Apr 2024 10:55:21 -0400 Subject: [PATCH] fix: remove console.log Signed-off-by: Aleksandr Zinin --- lib/Redis.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Redis.ts b/lib/Redis.ts index 74c63a7..1812157 100644 --- a/lib/Redis.ts +++ b/lib/Redis.ts @@ -551,7 +551,6 @@ class Redis extends Commander implements DataHandledable { // this handler must run after the "data" handler in "DataHandler" // so that `this.commandQueue.length` will be updated this.stream.once("data", () => { - console.log('GOT DATA, CLEARING TIMER'); clearTimeout(this.socketTimeoutTimer); this.socketTimeoutTimer = undefined; if (this.commandQueue.length === 0) return;