Skip to content

Commit

Permalink
better debugging output
Browse files Browse the repository at this point in the history
  • Loading branch information
paregorios committed Jul 1, 2015
1 parent 939a99e commit d68e2fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions isaw/awol/parse/awol_parsers.py
Expand Up @@ -57,7 +57,7 @@ def parse(self, article):
elif length > 1:
if u'journal:' in article.title.lower():
parser = self.parsers['generic-single']
logger.debug('using "{0}" parser'.format(parser.domain))
logger.info('using "{0}" parser'.format(parser.domain))
return parser.parse(article)
else:
raise NotImplementedError(u'awol_parsers does not know what to do with multiple domains in article: {0}\n {1}'.format(article.id, u'\n '.join(domains)))
Expand All @@ -69,7 +69,7 @@ def parse(self, article):
parser = self.parsers['generic-single']
else:
parser = self.parsers['generic']
logger.debug('using "{0}" parser'.format(parser.domain))
logger.info('using "{0}" parser'.format(parser.domain))
return parser.parse(article)


Expand Down

0 comments on commit d68e2fa

Please sign in to comment.