Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ async def interaction_check(self: Self, interaction: discord.Interaction) -> boo
"""

# Since we can't do it anywhere else, log slash command here
await self.slash_command_log(interaction)
asyncio.create_task(self.slash_command_log(interaction))

await self.logger.send_log(
message="Checking if slash command can run",
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Changes since 2026.06.04
- Add property to make application commands always enabled regardless of guild config
- Adds a docker ignore file to slim down the size of the docker container
- Make the check-format make task run the same CI as is run on GitHub
- Logs app commands as a background task, to hopefully speed up response times

# Modules

Expand Down
Loading