From 15fb273980882d56921a07fd25bb65d17ad10374 Mon Sep 17 00:00:00 2001 From: Leibale Eidelman Date: Wed, 17 Apr 2024 10:55:21 -0400 Subject: [PATCH] ref #1882 - remove console.log (#1883) --- 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;