mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
Progress messaging updates as each report is processed
This commit is contained in:
parent
3cab8159a3
commit
46e3dafd44
@ -44,17 +44,20 @@ private IEnumerable<DownloadDecision> GetDecisions(List<ReportInfo> reports, Sea
|
||||
{
|
||||
if (reports.Any())
|
||||
{
|
||||
_logger.Progress("Processing {0} reports", reports.Count());
|
||||
_logger.Progress("Processing {0} reports", reports.Count);
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
_logger.Progress("No reports found");
|
||||
}
|
||||
|
||||
|
||||
var reportNumber = 1;
|
||||
|
||||
foreach (var report in reports)
|
||||
{
|
||||
DownloadDecision decision = null;
|
||||
_logger.Progress("Processing report {0}/{1}", reportNumber, reports.Count);
|
||||
|
||||
try
|
||||
{
|
||||
@ -80,6 +83,8 @@ private IEnumerable<DownloadDecision> GetDecisions(List<ReportInfo> reports, Sea
|
||||
_logger.ErrorException("Couldn't process report.", e);
|
||||
}
|
||||
|
||||
reportNumber++;
|
||||
|
||||
if (decision != null)
|
||||
{
|
||||
yield return decision;
|
||||
|
Loading…
Reference in New Issue
Block a user