From 3af3c9ff4b8cf35fce107a2bf184dc88eb6d297f Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Mon, 23 Nov 2020 10:35:07 +0100 Subject: [PATCH] Removed unnecessary importlists warning. (cherry picked from commit a9384e26d86cfe8ae1d29569a708e3db9306abe6) --- .../ImportLists/FetchAndParseImportListService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs b/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs index 009f099f1..9fe4b025a 100644 --- a/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs +++ b/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs @@ -34,7 +34,7 @@ namespace NzbDrone.Core.ImportLists if (!importLists.Any()) { - _logger.Warn("No available import lists. check your configuration."); + _logger.Debug("No enabled import lists, skipping."); return result; } @@ -86,7 +86,7 @@ namespace NzbDrone.Core.ImportLists if (importList == null || !definition.EnableAutomaticAdd) { - _logger.Warn("No available import lists. check your configuration."); + _logger.Debug("Import list not enabled, skipping."); return result; }