fix: Remove connection.url from open debug message (#6018)

This commit is contained in:
Vlad Frangu
2021-07-03 20:44:48 +03:00
committed by GitHub
parent 374c779f7f
commit 39db95352c

View File

@@ -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;
}