1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00

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

View File

@ -103,6 +103,11 @@ private IEnumerable<DownloadDecision> GetDecisions(List<ReleaseInfo> reports, Se
_logger.Debug("Release rejected for the following reasons: {0}", string.Join(", ", decision.Rejections));
}
else
{
_logger.Debug("Release accepted");
}
yield return decision;
}
}