mirror of
https://github.com/Readarr/Readarr
synced 2025-12-17 13:52:36 +01:00
New: Log indexer when processing results
This commit is contained in:
parent
9dfa8c5b10
commit
80a5701b99
2 changed files with 5 additions and 2 deletions
|
|
@ -57,6 +57,7 @@ private IEnumerable<DownloadDecision> GetAlbumDecisions(List<ReleaseInfo> report
|
|||
{
|
||||
DownloadDecision decision = null;
|
||||
_logger.ProgressTrace("Processing release {0}/{1}", reportNumber, reports.Count);
|
||||
_logger.Debug("Processing release '{0}' from '{1}'", report.Title, report.Indexer);
|
||||
|
||||
try
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using NLog;
|
||||
|
|
@ -52,6 +52,8 @@ public List<ReleaseInfo> Fetch()
|
|||
|
||||
lock (result)
|
||||
{
|
||||
_logger.Debug("Found {0} from {1}", indexerReports.Count, indexer.Name);
|
||||
|
||||
result.AddRange(indexerReports);
|
||||
}
|
||||
}
|
||||
|
|
@ -71,4 +73,4 @@ public List<ReleaseInfo> Fetch()
|
|||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue