From 4e127558fd0de7b76cd9f19ad33686c0abe34e80 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 20 Apr 2024 20:07:53 -0400 Subject: [PATCH] Use `logging.info` instead of `print` --- ahtcg_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahtcg_bot.py b/ahtcg_bot.py index 2d09144..a99262f 100755 --- a/ahtcg_bot.py +++ b/ahtcg_bot.py @@ -104,7 +104,7 @@ class ArkhamDBUpdater(discord.Client): for channel_id in list(self.channel_list): channel = self.get_channel(channel_id) if channel is None: - print( + logging.info( f"channel {channel_id} does not exist, removing it from tracking!" ) self.channel_list.remove(channel_id)