Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/d7965022dbcfd561974ce3959f138e587d1f23fc You should set ROOT_URL correctly, otherwise the web may not work correctly.

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)

pull/4/head
kay.one 13 years ago
parent 786e38763a
commit d7965022db

@ -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;
}

Loading…
Cancel
Save