From d7fa1515e9e1bcdafdb38b8d66038272c7427eb4 Mon Sep 17 00:00:00 2001 From: Emily J Date: Fri, 9 Oct 2020 17:03:08 +1100 Subject: [PATCH] log how many commands are loaded --- bot/util/handlers.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bot/util/handlers.js b/bot/util/handlers.js index 17245f9..5be6fc2 100644 --- a/bot/util/handlers.js +++ b/bot/util/handlers.js @@ -44,6 +44,7 @@ class CommandHandler { } }); }); + this.client.logger.info(`Loaded a total of ${this.client.commands.size} commands.`) } async unload (name, category) {