From 558497cba8dc7487c06c7765ddbe12b479bd9b9b 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 --- lib/Redis.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Redis.ts b/lib/Redis.ts index 74c63a79..18121574 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;