Debug log when release is accepted

This commit is contained in:
Mark McDowall 2015-10-16 21:54:36 -07:00
parent d170c9ad07
commit 862f8024e3
1 changed files with 5 additions and 0 deletions

View File

@ -103,6 +103,11 @@ namespace NzbDrone.Core.DecisionEngine
_logger.Debug("Release rejected for the following reasons: {0}", string.Join(", ", decision.Rejections));
}
else
{
_logger.Debug("Release accepted");
}
yield return decision;
}
}