Skip to content

Commit

Permalink
fix(logger): pass the exception to the logging method instead of just…
Browse files Browse the repository at this point in the history
… printing the message
  • Loading branch information
MAXOUXAX committed Sep 8, 2023
1 parent a5951d7 commit a2ca337
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public boolean executeConsoleCommand(String commandInput) {
try {
consoleCommand.onCommand(args);
} catch (Exception e) {
supervisor.getLogger().error("La commande " + consoleCommand.name() + " a rencontré un problème lors de son exécution. (" + e.getMessage() + ")");
supervisor.getLogger().error("La commande " + consoleCommand.name() + " a rencontré un problème lors de son exécution. (" + e.getMessage() + ")", e);
}
});
return command.isPresent();
Expand Down Expand Up @@ -157,7 +157,7 @@ public void executeDiscordCommand(Supervised supervised, String command, SlashCo
discordCommand.onRootCommand(slashCommandEvent.getChannel(), slashCommandEvent.getMember(), slashCommandEvent);
}
} catch (Exception e) {
supervisor.getLogger().error("La commande " + discordCommand.name() + " a rencontré un problème lors de son exécution. (" + e.getMessage() + ")");
supervisor.getLogger().error("La commande " + discordCommand.name() + " a rencontré un problème lors de son exécution. (" + e.getMessage() + ")", e);
supervisor.getErrorHandler().handleException(e);
}
});
Expand All @@ -172,7 +172,7 @@ public void executeDiscordMessageInteraction(Supervised supervised, String id, G
try {
discordInteraction.onInteraction(event);
} catch (Exception e) {
supervisor.getLogger().error("L'interaction " + discordInteraction.id() + " a rencontré un problème lors de son exécution. (" + e.getMessage() + ")");
supervisor.getLogger().error("L'interaction " + discordInteraction.id() + " a rencontré un problème lors de son exécution. (" + e.getMessage() + ")", e);
}
});
}
Expand All @@ -182,7 +182,7 @@ public void executeDiscordModalInteraction(Supervised supervised, String id, Mod
try {
discordModalInteraction.onModalSubmit(event);
} catch (Exception e) {
supervisor.getLogger().error("L'interaction " + discordModalInteraction.id() + " a rencontré un problème lors de son exécution. (" + e.getMessage() + ")");
supervisor.getLogger().error("L'interaction " + discordModalInteraction.id() + " a rencontré un problème lors de son exécution. (" + e.getMessage() + ")", e);
}
});
}
Expand Down

0 comments on commit a2ca337

Please sign in to comment.