Skip to content

Commit cbbfb0c

Browse files
authored
Merge pull request #12 from pacnpal/alert-autofix-2
Potential fix for code scanning alert no. 2: Clear-text logging of sensitive information
2 parents c8f441e + 104c947 commit cbbfb0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

birthday/birthday.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def birthday_context_menu(interaction: discord.Interaction, member: discor
6363
if birthday_channel_id:
6464
channel = interaction.client.get_channel(birthday_channel_id)
6565
if not channel:
66-
logger.warning(f"Birthday channel {birthday_channel_id} not found in guild {interaction.guild.id}")
66+
logger.warning("Birthday channel not found in the guild")
6767
channel = interaction.channel
6868
else:
6969
channel = interaction.channel

0 commit comments

Comments
 (0)