Merge "Log 'Received unrecognized event type' as warning"

This commit is contained in:
Jenkins 2016-04-14 18:33:03 +00:00 committed by Gerrit Code Review
commit 152b82bee0
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class GerritEventConnector(threading.Thread):
try:
event.account = data.get(accountfield_from_type[event.type])
except KeyError:
self.log.error("Received unrecognized event type '%s' from Gerrit.\
self.log.warning("Received unrecognized event type '%s' from Gerrit.\
Can not get account information." % event.type)
event.account = None