From bc921ca625db95b431e2e1aa484891b1a9cbd377 Mon Sep 17 00:00:00 2001 From: Navy Date: Thu, 13 Aug 2020 23:45:23 +0300 Subject: [PATCH] changed logging level --- structure/client/DiscordClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structure/client/DiscordClient.js b/structure/client/DiscordClient.js index a62b956..cc6b251 100644 --- a/structure/client/DiscordClient.js +++ b/structure/client/DiscordClient.js @@ -63,7 +63,7 @@ class DiscordClient extends Client { await this.moderationManager.initialize(); await this.dispatcher.dispatch(); - this.logger.debug(`Took ${Date.now()-beforeTime}ms to build the client.`); + this.logger.info(`Took ${Date.now()-beforeTime}ms to build the client.`); this._built = true; return this._built;