1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Actually make it lower case...

This commit is contained in:
Mark McDowall 2015-05-02 01:23:04 -07:00
parent 6ab629ea98
commit 8b7eedf6f9

View File

@ -42,7 +42,7 @@ public override void Write(char value)
private LogLevel GetLogLevel(string value)
{
var lower = value;
var lower = value.ToLowerInvariant();
if (!lower.Contains("error"))
{