Private GIT

Skip to content
Snippets Groups Projects
Commit 82d8156a authored by Dustyn Gibson's avatar Dustyn Gibson
Browse files

Use 'WARNING' logger for 'No NZB/Torrent providers found or enabled in the sickrage config'

This way it doesnt get reported, as it is an ebkac, not a coding error.
parent af4f9cc3
No related branches found
No related tags found
No related merge requests found
...@@ -422,7 +422,7 @@ def searchForNeededEpisodes(): ...@@ -422,7 +422,7 @@ def searchForNeededEpisodes():
if not didSearch: if not didSearch:
logger.log( logger.log(
u"No NZB/Torrent providers found or enabled in the sickrage config for daily searches. Please check your settings.", u"No NZB/Torrent providers found or enabled in the sickrage config for daily searches. Please check your settings.",
logger.ERROR) logger.WARNING)
return foundResults.values() return foundResults.values()
...@@ -714,6 +714,6 @@ def searchProviders(show, episodes, manualSearch=False, downCurQuality=False): ...@@ -714,6 +714,6 @@ def searchProviders(show, episodes, manualSearch=False, downCurQuality=False):
if not didSearch: if not didSearch:
logger.log(u"No NZB/Torrent providers found or enabled in the sickrage config for backlog searches. Please check your settings.", logger.log(u"No NZB/Torrent providers found or enabled in the sickrage config for backlog searches. Please check your settings.",
logger.ERROR) logger.WARNING)
return finalResults return finalResults
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment