Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

Commit

Permalink
logging fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tyzbit committed Jul 5, 2021
1 parent 789d206 commit e4babf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async def send_dm(user, text):
return await user.send(text)

async def handle_archive_react(extractor, message, user):
logger.info(msg=f'Handling archive react on message {str(message.id)} in channel {str(message.channel.id)}, link for context: https://discord.com/channels/{str(message.guild.id})/{str(message.channel.id)}/{str(message.id)}', extra={'guild': message.guild.id})
logger.info(msg=f'Handling archive react on message {str(message.id)} in channel {str(message.channel.id)}, link for context: https://discord.com/channels/{str(message.guild.id)}/{str(message.channel.id)}/{str(message.id)}', extra={'guild': message.guild.id})
urls = extractor.find_urls(message.content)
if urls:
for url in urls:
Expand Down

0 comments on commit e4babf1

Please sign in to comment.