aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar TizzySaurus <[email protected]>2021-11-12 00:08:19 +0000
committerGravatar GitHub <[email protected]>2021-11-11 16:08:19 -0800
commita345a912a88a53123bdd5d0806530c62d5166a9a (patch)
treef47133e82404e39027cc2447b8c577fedccd2885
parentMerge PR #1947: Fix `!infractions by me` (diff)
Change log level from `WARNING` to `DEBUG`. (#1950)
-rw-r--r--bot/exts/help_channels/_cog.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py
index 0905cb23d..944a99917 100644
--- a/bot/exts/help_channels/_cog.py
+++ b/bot/exts/help_channels/_cog.py
@@ -128,9 +128,7 @@ class HelpChannels(commands.Cog):
# Handle odd edge case of `message.author` not being a `discord.Member` (see bot#1839)
if not isinstance(message.author, discord.Member):
- log.warning(
- f"{message.author} ({message.author.id}) isn't a member. Not giving cooldown role or sending DM."
- )
+ log.debug(f"{message.author} ({message.author.id}) isn't a member. Not giving cooldown role or sending DM.")
else:
await self._handle_role_change(message.author, message.author.add_roles)