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

This commit is contained in:
Vlad Frangu
2021-07-03 18:44:48 +01:00
committed by GitHub
parent 374c779f7f
commit 39db95352c
+1 -1
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;
}