Added extra logging when deploying commands

This commit is contained in:
Logan Cusano
2023-06-03 15:42:40 -04:00
parent a5cff9ec7e
commit 18afa7c058

View File

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