aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Daniel Brown <[email protected]>2020-03-20 15:11:15 -0500
committerGravatar GitHub <[email protected]>2020-03-20 15:11:15 -0500
commitc432bf965a7bd5f660730aa3497ef1f8d8800a31 (patch)
tree048a2bf6ea3e1aa80cf059449a5102e3a638ca8c
parentMerge branch 'master' into hemlock-perma-ban-watch-removal (diff)
Changed a logging level
- Changed the log for when the big brother cog doesn't load in the `apply_ban()` method doesn't properly load from a trace to an error.
-rw-r--r--bot/cogs/moderation/infractions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/moderation/infractions.py b/bot/cogs/moderation/infractions.py
index c242a3000..efa19f59e 100644
--- a/bot/cogs/moderation/infractions.py
+++ b/bot/cogs/moderation/infractions.py
@@ -253,7 +253,7 @@ class Infractions(InfractionScheduler, commands.Cog):
bb_cog = self.bot.get_cog("Big Brother")
if not bb_cog:
- log.trace(f"Big Brother cog not loaded; perma-banned user {user} won't be unwatched.")
+ log.error(f"Big Brother cog not loaded; perma-banned user {user} won't be unwatched.")
return
log.trace(f"Big Brother cog loaded; attempting to unwatch perma-banned user {user}.")