diff options
author | 2020-03-20 15:11:15 -0500 | |
---|---|---|
committer | 2020-03-20 15:11:15 -0500 | |
commit | c432bf965a7bd5f660730aa3497ef1f8d8800a31 (patch) | |
tree | 048a2bf6ea3e1aa80cf059449a5102e3a638ca8c | |
parent | Merge 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.py | 2 |
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}.") |