1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Major logging overhaul

This commit is contained in:
Mark McDowall
2014-03-13 13:12:42 -07:00
parent 953024cd40
commit 2f3430387e
102 changed files with 284 additions and 238 deletions
@@ -30,10 +30,10 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
var age = subject.Release.Age;
var retention = _configService.Retention;
_logger.Trace("Checking if report meets retention requirements. {0}", age);
_logger.Debug("Checking if report meets retention requirements. {0}", age);
if (retention > 0 && age > retention)
{
_logger.Trace("Report age: {0} rejected by user's retention limit", age);
_logger.Debug("Report age: {0} rejected by user's retention limit", age);
return false;
}