We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5d93ff commit 69e48beCopy full SHA for 69e48be
1 file changed
nodejs/src/client/wsConnector.ts
@@ -21,7 +21,7 @@ export class WebSocketConnector {
21
this._timeout = timeout
22
}
23
this._wsConn = new w3cwebsocket(origin.concat(pathname).concat(search), undefined, undefined, undefined, undefined, {maxReceivedFrameSize:0x60000000, maxReceivedMessageSize:0x60000000});
24
- this._wsConn.onerror = function (err: Error) { logger.error(`WebSocket ${this._url.toString()} error: ${err.message}`);}
+ this._wsConn.onerror = function (err: Error) { logger.error(`WebSocket connection failed, url: ${this._url.toString()}, error: ${err.message}`);}
25
26
this._wsConn.onclose = this._onclose
27
0 commit comments