From c8cd0148dd86e8903a3b8cf16b87841262d3c1e6 Mon Sep 17 00:00:00 2001 From: Thomas Kosmas Date: Thu, 19 Dec 2024 20:39:30 +0200 Subject: [PATCH] refactor: remove error logging for 'isows' module import in WebSocket initialization --- apps/js-sdk/firecrawl/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/js-sdk/firecrawl/src/index.ts b/apps/js-sdk/firecrawl/src/index.ts index 7eef05f8..9e3a849f 100644 --- a/apps/js-sdk/firecrawl/src/index.ts +++ b/apps/js-sdk/firecrawl/src/index.ts @@ -14,7 +14,6 @@ const WebSocket: typeof IsowsWebSocket | null = await (async () => { const module = await import('isows'); return module.WebSocket; } catch (error) { - console.error("Failed to load 'isows' module:", error); return null; } })();