1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-13 20:44:52 -04:00

Log indexer when processing results

Closes #295
This commit is contained in:
Mark McDowall
2018-01-13 14:09:45 -08:00
parent a1b6095f6e
commit ee673cd152
2 changed files with 5 additions and 2 deletions

View File

@@ -58,6 +58,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
{

View File

@@ -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);
}
}
@@ -71,4 +73,4 @@ namespace NzbDrone.Core.Indexers
return result;
}
}
}
}