1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 17:47:08 +00: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"))
{