diff --git a/backend/src/api/websocket-handler.ts b/backend/src/api/websocket-handler.ts index a726812aa..f66bdbe1a 100644 --- a/backend/src/api/websocket-handler.ts +++ b/backend/src/api/websocket-handler.ts @@ -29,6 +29,7 @@ class WebsocketHandler { } this.wss.on('connection', (client: WebSocket) => { + client.on('error', logger.info); client.on('message', (message: string) => { try { const parsedMessage: WebsocketResponse = JSON.parse(message);