From 617fe6ff537295864c6f6f0c8097a90e0d5ad3ff Mon Sep 17 00:00:00 2001 From: Nikolay Karadzhov Date: Mon, 28 Jul 2025 11:22:05 +0300 Subject: [PATCH] fix(scan): remove console.logs fixes #3037 --- packages/client/lib/commands/SCAN.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/client/lib/commands/SCAN.ts b/packages/client/lib/commands/SCAN.ts index 173e8959af..d3153b786f 100644 --- a/packages/client/lib/commands/SCAN.ts +++ b/packages/client/lib/commands/SCAN.ts @@ -87,7 +87,6 @@ export default { if (options?.TYPE) { parser.push('TYPE', options.TYPE); } - console.log('eeeeeeeeee', parser.redisArgs) }, /** * Transforms the SCAN reply into a structured object @@ -96,7 +95,6 @@ export default { * @returns Object with cursor and keys properties */ transformReply([cursor, keys]: [BlobStringReply, ArrayReply]) { - console.log(cursor, keys) return { cursor, keys