From 62ac1e4132bfee13cb0f6ede278e33a06d533d99 Mon Sep 17 00:00:00 2001 From: Steve Korshakov Date: Tue, 19 Aug 2025 14:39:58 -0700 Subject: [PATCH] fix: remove event logging --- sources/modules/eventRouter.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/sources/modules/eventRouter.ts b/sources/modules/eventRouter.ts index 248735f..5e8a7f1 100644 --- a/sources/modules/eventRouter.ts +++ b/sources/modules/eventRouter.ts @@ -248,7 +248,6 @@ export class EventRouter { continue; } - log({ module: 'websocket' }, `Sending ${params.eventName} to ${connection.connectionType} connection ${connection.socket.id}`); connection.socket.emit(params.eventName, params.payload); } }