From 99e2ca408b0ead894c2d91bc2902c392a3635fb0 Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Thu, 3 Jun 2021 17:18:21 +0200 Subject: [PATCH] debug(WebSocketShard): emit intents used in identify (#5744) --- src/client/websocket/WebSocketShard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/websocket/WebSocketShard.js b/src/client/websocket/WebSocketShard.js index 4fe904e1a..ed5a73d1e 100644 --- a/src/client/websocket/WebSocketShard.js +++ b/src/client/websocket/WebSocketShard.js @@ -600,7 +600,7 @@ class WebSocketShard extends EventEmitter { shard: [this.id, Number(client.options.shardCount)], }; - this.debug(`[IDENTIFY] Shard ${this.id}/${client.options.shardCount}`); + this.debug(`[IDENTIFY] Shard ${this.id}/${client.options.shardCount} with intents: ${d.intents}`); this.send({ op: OPCodes.IDENTIFY, d }, true); }