From b28eee578a91085b6593da2f89de477e6e580bb1 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 2 May 2023 10:23:13 +0300 Subject: [PATCH] Log apps sync not having intersecting tags as debug --- src/NzbDrone.Core/Applications/ApplicationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Applications/ApplicationService.cs b/src/NzbDrone.Core/Applications/ApplicationService.cs index 719fa0b65..3434c8aa4 100644 --- a/src/NzbDrone.Core/Applications/ApplicationService.cs +++ b/src/NzbDrone.Core/Applications/ApplicationService.cs @@ -214,7 +214,7 @@ private bool ShouldHandleIndexer(ProviderDefinition app, ProviderDefinition inde return true; } - _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); + _logger.Debug("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; }