We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 450b675 commit 93ab617Copy full SHA for 93ab617
tux/cogs/utility/guide.py
@@ -1,8 +1,8 @@
1
import discord
2
from discord import app_commands
3
from discord.ext import commands
4
+from loguru import logger
5
-# from loguru import logger
6
from tux.utils.constants import Constants as CONST
7
8
@@ -49,6 +49,7 @@ async def guide(self, interaction: discord.Interaction) -> None:
49
icon_url=interaction.user.display_avatar.url,
50
)
51
embed.timestamp = interaction.created_at
52
+ logger.info(f"{interaction.user} used the guide command in {interaction.channel}.")
53
await interaction.response.send_message(embed=embed)
54
55
0 commit comments