From 5bf0ae661e8dc1c4b89a830596283bf76bdd0f8f Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sat, 11 Mar 2023 15:54:41 -0500 Subject: [PATCH] Add better logging to deploy commands --- utilities/deployCommands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/deployCommands.js b/utilities/deployCommands.js index 1cc14c3..6caff15 100644 --- a/utilities/deployCommands.js +++ b/utilities/deployCommands.js @@ -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); } })() }