Skip to content

Commit

Permalink
Changing log messages from ERROR to WARNING
Browse files Browse the repository at this point in the history
  • Loading branch information
ratoaq2 committed Mar 29, 2016
1 parent ac79b3c commit e616ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sickbeard/subtitles.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ def get_subtitles_dir(video_path):
if sickbeard.helpers.makeDir(new_subtitles_path):
sickbeard.helpers.chmodAsParent(new_subtitles_path)
else:
logger.log(u'Unable to create subtitles folder {0}'.format(new_subtitles_path), logger.ERROR)
logger.log(u'Unable to create subtitles folder {0}'.format(new_subtitles_path), logger.WARNING)

return new_subtitles_path

Expand Down Expand Up @@ -822,7 +822,7 @@ def dhm(td):

except Exception as error:
logger.log(u'Error while searching subtitles for {0} {1}. Error: {2}'.format
(ep_to_sub['show_name'], ep_num, ex(error)), logger.ERROR)
(ep_to_sub['show_name'], ep_num, ex(error)), logger.WARNING)
continue

logger.log(u'Finished checking for missed subtitles', logger.INFO)
Expand Down

0 comments on commit e616ed3

Please sign in to comment.