Skip to content

Commit

Permalink
Proper log to DEBUG (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandog committed May 24, 2016
1 parent f278b4b commit ab3b6e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sickbeard/properFinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def _downloadPropers(self, proper_list):
break

if is_same:
logger.log(u"This proper '{result}' is already in history, skipping it".format(result=cur_proper.name), logger.WARNING)
logger.log(u"This proper '{result}' is already in history, skipping it".format(result=cur_proper.name), logger.DEBUG)
continue
else:
# make sure that none of the existing history downloads are the same proper we're trying to download
Expand All @@ -295,7 +295,7 @@ def _downloadPropers(self, proper_list):
is_same = True
break
if is_same:
logger.log(u"This proper '{result}' is already in history, skipping it".format(result=cur_proper.name), logger.WARNING)
logger.log(u"This proper '{result}' is already in history, skipping it".format(result=cur_proper.name), logger.DEBUG)
continue

# get the episode object
Expand Down

0 comments on commit ab3b6e5

Please sign in to comment.