summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-03-23 09:35:54 +0000
committerGerrit Code Review <review@openstack.org>2023-03-23 09:35:54 +0000
commitdd8ad88b8e2f1bd25ac1009111cae0eebfc89233 (patch)
tree522cee0fad887fce657b617102e42b1bcc850126
parent8c3c0c225129197f5a15577415cea8c6c6053155 (diff)
parentf3cb00b5835181ca21f381b13da04155946f8297 (diff)
downloadzuul-dd8ad88b8e2f1bd25ac1009111cae0eebfc89233.tar.gz
Merge "Add installation_id to event log"
-rw-r--r--zuul/driver/github/githubconnection.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/zuul/driver/github/githubconnection.py b/zuul/driver/github/githubconnection.py
index f5f81fcdb..0155e6963 100644
--- a/zuul/driver/github/githubconnection.py
+++ b/zuul/driver/github/githubconnection.py
@@ -407,7 +407,8 @@ class GithubEventProcessor(object):
# Returns empty on unhandled events
return
- self.log.debug("Handling %s event", self.event_type)
+ self.log.debug("Handling %s event with installation id %s",
+ self.event_type, installation_id)
events = []
try:
events = method()