From 22f7443f0b1fe3b2b447afec7fd9641339556594 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Thu, 2 Feb 2017 22:05:53 +0100 Subject: [PATCH] punishments and v+t info is info now, not warning --- .../Modules/Administration/Commands/ProtectionCommands.cs | 2 +- .../Modules/Administration/Commands/VoicePlusTextCommands.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Administration/Commands/ProtectionCommands.cs b/src/NadekoBot/Modules/Administration/Commands/ProtectionCommands.cs index 3e3b217a..7639a4dc 100644 --- a/src/NadekoBot/Modules/Administration/Commands/ProtectionCommands.cs +++ b/src/NadekoBot/Modules/Administration/Commands/ProtectionCommands.cs @@ -183,7 +183,7 @@ namespace NadekoBot.Modules.Administration private static async Task PunishUsers(PunishmentAction action, ProtectionType pt, params IGuildUser[] gus) { - _log.Warn($"[{pt}] - Punishing [{gus.Length}] users with [{action}] in {gus[0].Guild.Name} guild"); + _log.Info($"[{pt}] - Punishing [{gus.Length}] users with [{action}] in {gus[0].Guild.Name} guild"); foreach (var gu in gus) { switch (action) diff --git a/src/NadekoBot/Modules/Administration/Commands/VoicePlusTextCommands.cs b/src/NadekoBot/Modules/Administration/Commands/VoicePlusTextCommands.cs index 3b68f36f..d0c905bb 100644 --- a/src/NadekoBot/Modules/Administration/Commands/VoicePlusTextCommands.cs +++ b/src/NadekoBot/Modules/Administration/Commands/VoicePlusTextCommands.cs @@ -93,7 +93,7 @@ namespace NadekoBot.Modules.Administration if (beforeRole != null) try { - _log.Warn("Removing role " + beforeRoleName + " from user " + user.Username); + _log.Info("Removing role " + beforeRoleName + " from user " + user.Username); await user.RemoveRolesAsync(beforeRole).ConfigureAwait(false); await Task.Delay(200).ConfigureAwait(false); }