diff options
-rw-r--r-- | bot/exts/moderation/infraction/_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/infraction/_scheduler.py b/bot/exts/moderation/infraction/_scheduler.py index 11d5404a9..0680f5307 100644 --- a/bot/exts/moderation/infraction/_scheduler.py +++ b/bot/exts/moderation/infraction/_scheduler.py @@ -122,7 +122,7 @@ class InfractionScheduler: except discord.NotFound: log.warning(f"Channel or message {message_id} not found in channel {channel_id}.") except discord.Forbidden: - log.warning(f"Bot lacks permissions to delete message {message_id} in channel {channel_id}.") + log.info(f"Bot lacks permissions to delete message {message_id} in channel {channel_id}.") except discord.HTTPException: log.exception(f"Issue during scheduled deletion of message {message_id} in channel {channel_id}.") return # Keep the task in Redis on HTTP errors |