We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca4aaa5 commit abb7ac3Copy full SHA for abb7ac3
plugin.py
@@ -887,8 +887,8 @@ def _handleBugmails(self, bugmails):
887
installation = self._bzByUrl(mail.urlbase)
888
self.log.info('Handling bugmail for bug %s on %s (%s)' % (mail.bug_id, mail.urlbase, installation.name))
889
installation.handleBugmail(mail)
890
- except BugzillaNotFound:
891
- self.log.error("Bugzilla %s not found" % mail.urlbase)
+ except BugzillaNotFound as e:
+ self.log.error("Bugzilla %s not found: %s" % (mail.urlbase, e))
892
except Exception as e:
893
self.log.error("_bzByUrl failed: %s" % e)
894
0 commit comments