From d7965022dbcfd561974ce3959f138e587d1f23fc Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Fri, 10 Feb 2012 17:54:08 -0800 Subject: [PATCH] Fix: RSS parse errors are no longer logged as warning and will not show up in the log page (they are still included in the log files) --- NzbDrone.Core/Parser.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Core/Parser.cs b/NzbDrone.Core/Parser.cs index 763459755..04ae8936b 100644 --- a/NzbDrone.Core/Parser.cs +++ b/NzbDrone.Core/Parser.cs @@ -83,6 +83,10 @@ namespace NzbDrone.Core { result.OriginalString = path; } + else + { + Logger.Warn("Unable to parse episode info from path {0}", path); + } return result; } @@ -119,7 +123,8 @@ namespace NzbDrone.Core { Logger.ErrorException("An error has occurred while trying to parse " + title, e); } - Logger.Warn("Unable to parse episode info. {0}", title); + + Logger.Trace("Unable to parse {0}", title); ReportingService.ReportParseError(title); return null; }