Skip to content

Commit

Permalink
fix: Remove connection.url from open debug message (#6018)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfrangu committed Jul 3, 2021
1 parent 374c779 commit 39db953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/websocket/WebSocketShard.js
Expand Up @@ -265,7 +265,7 @@ class WebSocketShard extends EventEmitter {
* @private
*/
onOpen() {
this.debug(`[CONNECTED] ${this.connection.url} in ${Date.now() - this.connectedAt}ms`);
this.debug(`[CONNECTED] Took ${Date.now() - this.connectedAt}ms`);
this.status = Status.NEARLY;
}

Expand Down

0 comments on commit 39db953

Please sign in to comment.