Add better logging to deploy commands

This commit is contained in:
Logan Cusano
2023-03-11 15:54:41 -05:00
parent 1e6a50ff1b
commit 5bf0ae661e

View File

@@ -42,7 +42,7 @@ exports.deploy = (guildIDs) => {
log.DEBUG(`Successfully reloaded ${data.length} application (/) commands for guild ID: ${guildId}.`);
} catch (error) {
// And of course, make sure you catch and log any errors!
log.ERROR(error);
log.ERROR("ERROR Deploying commands", error);
}
})()
}