mirror of
https://github.com/Rapptz/discord.py.git
synced 2026-03-05 03:02:49 +00:00
Add guild and user context to autocomplete logs
This commit is contained in:
@@ -1289,7 +1289,12 @@ class CommandTree(Generic[ClientT]):
|
|||||||
await command._invoke_autocomplete(interaction, focused, namespace)
|
await command._invoke_autocomplete(interaction, focused, namespace)
|
||||||
except Exception:
|
except Exception:
|
||||||
# Suppress exception since it can't be handled anyway.
|
# Suppress exception since it can't be handled anyway.
|
||||||
_log.exception('Ignoring exception in autocomplete for %r', command.qualified_name)
|
_log.exception(
|
||||||
|
'Ignoring exception in autocomplete for %r (Guild: %s, User: %s)',
|
||||||
|
command.qualified_name,
|
||||||
|
interaction.guild_id,
|
||||||
|
interaction.user.id,
|
||||||
|
)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user