refactor: remove error logging for 'isows' module import in WebSocket initialization

This commit is contained in:
Thomas Kosmas 2024-12-19 20:39:30 +02:00
parent 6002bf3228
commit c8cd0148dd

View File

@ -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;
}
})();