Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyzha0 committed Feb 27, 2024
1 parent 08b0c2b commit 835f458
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion transport/impls/ws/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ export class WebSocketClientTransport extends ClientTransport<WebSocketConnectio

if ('ws' in wsRes) {
const conn = new WebSocketConnection(wsRes.ws);
log?.info(`${this.clientId} -- websocket (id: ${conn.debugId}) to ${to} ok`);
log?.info(
`${this.clientId} -- websocket (id: ${conn.debugId}) to ${to} ok`,
);
conn.addDataListener(this.receiveWithBootSequence(conn));
wsRes.ws.onclose = () => {
log?.info(
Expand Down

0 comments on commit 835f458

Please sign in to comment.