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?
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 calledCog.on_app_command_error()
andCog.on_command_error()
that can be implemented and can maybe show the error details?Source: Discord.py docs