Skip to content

Commit

Permalink
Changing log level to info in guessit rules (#1586)
Browse files Browse the repository at this point in the history
* Changing log level to info in guessit rules

* Fix indentation issue
  • Loading branch information
ratoaq2 authored and fernandog committed Nov 18, 2016
1 parent e8cab96 commit 2a078c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions medusa/name_parser/rules/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -1934,8 +1934,8 @@ def when(self, matches, context):
values = matches.named(name)
unique_values = {v.value for v in values}
if len(unique_values) > 1:
logger.error(u"Guessed more than one '%s' for '%s': %s",
name, matches.input_string, u','.join(unique_values), exc_info=False)
logger.info(u"Guessed more than one '%s' for '%s': %s",
name, matches.input_string, u','.join(unique_values), exc_info=False)
to_remove.extend(values)

return to_remove
Expand Down

0 comments on commit 2a078c7

Please sign in to comment.