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()); }