From 39e543e63360bdf1e575226114b0cf7477971fb6 Mon Sep 17 00:00:00 2001 From: Tyler Date: Wed, 8 Jan 2025 16:20:27 -0500 Subject: [PATCH] fix --- src/abacus-ts/websocket/lib/reconnectingWebsocket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abacus-ts/websocket/lib/reconnectingWebsocket.ts b/src/abacus-ts/websocket/lib/reconnectingWebsocket.ts index bafc3cdf3..afbeed0ca 100644 --- a/src/abacus-ts/websocket/lib/reconnectingWebsocket.ts +++ b/src/abacus-ts/websocket/lib/reconnectingWebsocket.ts @@ -191,7 +191,7 @@ class WebSocketConnection { this.ws.onclose = (close) => { // 1000 is expected and 1001 is for browser navigating away, below that are unused if (close.code > 1001) { - logAbacusTsError('WebSocketConnection', `socket ${this.id} closed`, close); + logAbacusTsError('WebSocketConnection', `socket ${this.id} closed abnormally`, close); } this.close(); };