mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-21 04:10:52 +02:00
New: Show Indexer names in search event
This commit is contained in:
parent
f31cb4d0cf
commit
6583f45c41
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@ private async Task<List<ReleaseInfo>> Dispatch(Func<IIndexer, Task<IndexerPageab
|
|||
.ToList();
|
||||
}
|
||||
|
||||
_logger.ProgressInfo("Searching {0} indexers for {1}", indexers.Count, criteriaBase.ToString());
|
||||
_logger.ProgressInfo("Searching indexers: [{0}] for {1}", string.Join(", ", indexers.Select(i => i.Definition.Name).ToList()), criteriaBase.ToString());
|
||||
|
||||
var tasks = indexers.Select(x => DispatchIndexer(searchAction, x, criteriaBase));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue