diff --git a/techsupport_bot/commands/protect.py b/techsupport_bot/commands/protect.py index 504b2d312..7707919df 100644 --- a/techsupport_bot/commands/protect.py +++ b/techsupport_bot/commands/protect.py @@ -358,7 +358,7 @@ async def handle_length_alert( message=( f"Protect did not reupload {lf} file(s) due to file size limit." ), - level=LogLevel.INFO, + level=LogLevel.WARN, channel=log_channel, context=LogContext(guild=ctx.guild, channel=ctx.channel), ) diff --git a/techsupport_bot/functions/logger.py b/techsupport_bot/functions/logger.py index ef3c23822..dd9982ace 100644 --- a/techsupport_bot/functions/logger.py +++ b/techsupport_bot/functions/logger.py @@ -211,7 +211,7 @@ async def build_attachments( f"Logger did not reupload {lf} file(s) due to file size limit" f" on message {ctx.message.id} in channel {ctx.channel.name}." ), - level=LogLevel.INFO, + level=LogLevel.WARN, channel=log_channel, context=LogContext(guild=ctx.guild, channel=ctx.channel), )