Actually make it lower case...

This commit is contained in:
Mark McDowall 2015-05-02 01:23:04 -07:00
parent 6ab629ea98
commit 8b7eedf6f9
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ namespace NzbDrone.Host.Owin
private LogLevel GetLogLevel(string value)
{
var lower = value;
var lower = value.ToLowerInvariant();
if (!lower.Contains("error"))
{