Lint: Use log variable, not logger.

This commit is contained in:
rallytime 2018-03-07 10:21:45 -05:00
parent ca1860cd91
commit c7dddaf8ce
No known key found for this signature in database
GPG key ID: E8F1A4B90D0DEA19

View file

@ -384,7 +384,7 @@ class EventListener(object):
try:
is_matched = matcher(mtag, tag)
except Exception as e:
logger.error('Failed to run a matcher.', exc_info=True)
log.error('Failed to run a matcher.', exc_info=True)
is_matched = False
if not is_matched: