Zgell / ice-cream-discord-bot

Ice Cream Bot is a Python-based Discord bot built on Discord.py. It is a general-purpose Discord bot with a wide range of functionalities.
Apache License 2.0
1 stars 0 forks source link

Better Command Error Handling #10

Closed Zgell closed 1 year ago

Zgell commented 1 year ago

Currently if one of the bot's commands fails for some reason, no error is displayed. However it looks like there might be a way to fix this. There is a pair of functions that discord.ext.commands.Cog can possess called Cog.on_app_command_error() and Cog.on_command_error() that can be implemented and can maybe show the error details?

Source: Discord.py docs