From 18afa7c05893fd0d77eee8a87dd7789775cb1e27 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sat, 3 Jun 2023 15:42:40 -0400 Subject: [PATCH] Added extra logging when deploying commands --- Server/utilities/deployCommands.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/utilities/deployCommands.js b/Server/utilities/deployCommands.js index d05a110..755c9ab 100644 --- a/Server/utilities/deployCommands.js +++ b/Server/utilities/deployCommands.js @@ -22,6 +22,7 @@ exports.deploy = (clientId, guildIDs) => { // Grab the SlashCommandBuilder#toJSON() output of each command's data for deployment for (const file of commandFiles) { const command = require(`${path.resolve(commandsPath, file)}`); + log.VERBOSE('Deploying Command: ', command); commands.push(command.data.toJSON()); }