mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07: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 @@ namespace NzbDrone.Core.DecisionEngine
|
|||
{
|
||||
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 @@ namespace NzbDrone.Core.Indexers
|
|||
|
||||
lock (result)
|
||||
{
|
||||
_logger.Debug("Found {0} from {1}", indexerReports.Count, indexer.Name);
|
||||
|
||||
result.AddRange(indexerReports);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue