Skip to content

Commit

Permalink
fix: debug log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Deivu committed Aug 23, 2024
1 parent 025202e commit d59c5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/Node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export class Node extends TypedEventEmitter<NodeEvents> {
if (!this.initialized)
this.initialized = true;

this.emit('debug', `[Socket] -> [${this.name}] : Connecting ${this.url}...`);
this.emit('debug', `[Socket] -> [${this.name}] : Connecting to ${this.url} ...`);

const url = new URL(this.url);
this.ws = new Websocket(url.toString(), { headers } as Websocket.ClientOptions);
Expand Down

0 comments on commit d59c5a0

Please sign in to comment.