diff --git a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs index 56489e5a2..39eebfa16 100644 --- a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs +++ b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs @@ -180,7 +180,7 @@ public AuthenticationType AuthenticationMethod // TODO: Change back to "master" for the first stable release. public string Branch => GetValue("Branch", "aphrodite").ToLowerInvariant(); - public string LogLevel => GetValue("LogLevel", "info"); + public string LogLevel => GetValue("LogLevel", "info").ToLowerInvariant(); public string ConsoleLogLevel => GetValue("ConsoleLogLevel", string.Empty, persist: false); public bool LogSql => GetValueBoolean("LogSql", false, persist: false); public int LogRotate => GetValueInt("LogRotate", 50, persist: false);