Skip to content

Commit 065eb5e

Browse files
authored
fix(json): remove debug console.logs (#2970)
1 parent 27537b0 commit 065eb5e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/json/lib/commands/helpers.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { isNullReply } from "@redis/client/dist/lib/commands/generic-transformer
22
import { BlobStringReply, NullReply, UnwrapReply } from "@redis/client/dist/lib/RESP/types";
33

44
export function transformRedisJsonNullReply(json: NullReply | BlobStringReply): NullReply | RedisJSON {
5-
console.log('transformRedisJsonNullReply', json)
65
return isNullReply(json) ? json : transformRedisJsonReply(json);
76
}
87

@@ -17,6 +16,5 @@ export function transformRedisJsonArgument(json: RedisJSON): string {
1716

1817
export function transformRedisJsonReply(json: BlobStringReply): RedisJSON {
1918
const res = JSON.parse((json as unknown as UnwrapReply<typeof json>).toString());
20-
console.log('transformRedisJsonReply', json, res)
2119
return res;
2220
}

0 commit comments

Comments
 (0)