Removed unnecessary importlists warning.

This commit is contained in:
Taloth Saldono 2020-11-23 10:35:07 +01:00
parent 0bc190e97e
commit a9384e26d8

View file

@ -34,7 +34,7 @@ namespace NzbDrone.Core.ImportLists
if (!importLists.Any()) if (!importLists.Any())
{ {
_logger.Warn("No available import lists. check your configuration."); _logger.Debug("No enabled import lists, skipping.");
return result; return result;
} }
@ -86,7 +86,7 @@ namespace NzbDrone.Core.ImportLists
if (importList == null || !definition.EnableAutomaticAdd) if (importList == null || !definition.EnableAutomaticAdd)
{ {
_logger.Warn("No available import lists. check your configuration."); _logger.Debug("Import list not enabled, skipping.");
return result; return result;
} }