diff --git a/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs b/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs index ef38963e..cd7e4a78 100644 --- a/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs +++ b/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs @@ -43,14 +43,14 @@ namespace NadekoBot.Modules.Administration.Services await user.AddRoleAsync(role).ConfigureAwait(false); else { - _log.Info($"Disabled 'Auto assign role' feature on {0} server the role doesn't exist.", + _log.Warn($"Disabled 'Auto assign role' feature on {0} server the role doesn't exist.", roleId); DisableAar(user.GuildId); } } catch (Discord.Net.HttpException ex) when (ex.HttpCode == System.Net.HttpStatusCode.Forbidden) { - _log.Info($"Disabled 'Auto assign role' feature on {0} server because I don't have role management permissions.", + _log.Warn($"Disabled 'Auto assign role' feature on {0} server because I don't have role management permissions.", roleId); DisableAar(user.GuildId); } diff --git a/NadekoBot.Core/Services/Impl/StatsService.cs b/NadekoBot.Core/Services/Impl/StatsService.cs index 540b5304..c4b06b0b 100644 --- a/NadekoBot.Core/Services/Impl/StatsService.cs +++ b/NadekoBot.Core/Services/Impl/StatsService.cs @@ -21,7 +21,7 @@ namespace NadekoBot.Core.Services.Impl private readonly IBotCredentials _creds; private readonly DateTime _started; - public const string BotVersion = "2.2.3"; + public const string BotVersion = "2.3.0"; public string Author => "Kwoth#2560"; public string Library => "Discord.Net";