From 1ec305a4e4fa186efe7aed370c7d5b732e5a6c08 Mon Sep 17 00:00:00 2001 From: Jothi Prakash Date: Wed, 4 Jun 2025 15:27:37 +0530 Subject: [PATCH] Removed the log warning --- lib/utils/lz4.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/utils/lz4.ts b/lib/utils/lz4.ts index b8a8e8ad..3afcfce9 100644 --- a/lib/utils/lz4.ts +++ b/lib/utils/lz4.ts @@ -12,7 +12,6 @@ function tryLoadLZ4Module(): LZ4Module | undefined { } if (err.code === 'MODULE_NOT_FOUND') { - console.warn('LZ4 module not installed: Missing dependency', err); return undefined; }