1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Log active indexers instead of implying all indexers are searched

(cherry picked from commit e19d4cf85b5a48ef823b9a983591d2bf7e72c621)
This commit is contained in:
Mark McDowall 2021-08-29 19:25:41 -07:00 committed by Qstick
parent 6808d5388c
commit 425772da1c

View File

@ -104,7 +104,7 @@ private List<DownloadDecision> Dispatch(Func<IIndexer, IEnumerable<ReleaseInfo>>
var reports = new List<ReleaseInfo>();
_logger.ProgressInfo("Searching {0} indexers for {1}", indexers.Count, criteriaBase);
_logger.ProgressInfo("Searching indexers for {0}. {1} active indexers", criteriaBase, indexers.Count);
var taskList = new List<Task>();
var taskFactory = new TaskFactory(TaskCreationOptions.LongRunning, TaskContinuationOptions.None);