Browse Source

Log suppressed autocomplete exceptions

pull/9572/head
Rapptz 2 years ago
parent
commit
9e2f2cb3af
  1. 2
      discord/app_commands/tree.py

2
discord/app_commands/tree.py

@ -1240,7 +1240,7 @@ class CommandTree(Generic[ClientT]):
await command._invoke_autocomplete(interaction, focused, namespace)
except Exception:
# Suppress exception since it can't be handled anyway.
pass
_log.exception('Ignoring exception in autocomplete for %r', command.qualified_name)
return

Loading…
Cancel
Save