mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-16 01:40:47 +02:00
Fixed: Clarify App Sync-Indexer Logging for tags
This commit is contained in:
parent
309f42bac5
commit
1a9b202afe
1 changed files with 2 additions and 2 deletions
|
|
@ -210,11 +210,11 @@ private bool ShouldHandleIndexer(ProviderDefinition app, ProviderDefinition inde
|
|||
|
||||
if (intersectingTags.Any())
|
||||
{
|
||||
_logger.Debug("Application {0} and indexer {1} [{2}] have {3} intersecting tags.", app.Name, indexer.Name, indexer.Id, intersectingTags.Length);
|
||||
_logger.Debug("Application {0} and indexer {1} [{2}] have {3} intersecting (matching) tags.", app.Name, indexer.Name, indexer.Id, intersectingTags.Length);
|
||||
return true;
|
||||
}
|
||||
|
||||
_logger.Info("Application {0} does not have any intersecting tags with {1} [{2}]. Indexer will not be handled.", app.Name, indexer.Name, indexer.Id);
|
||||
_logger.Info("Application {0} does not have any intersecting (matching) tags with {1} [{2}]. Indexer will neither be synced to nor removed from the application.", app.Name, indexer.Name, indexer.Id);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue