Merge "executor: change execution log to INFO"

This commit is contained in:
Zuul 2018-07-10 22:16:22 +00:00 committed by Gerrit Code Review
commit dca4f678eb
1 changed files with 5 additions and 2 deletions

View File

@ -690,8 +690,11 @@ class AnsibleJob(object):
def _execute(self):
args = json.loads(self.job.arguments)
self.log.debug("Beginning job %s for ref %s" %
(self.job.name, args['zuul']['ref']))
self.log.info(
"Beginning job %s for ref %s (change %s)" % (
args['zuul']['job'],
args['zuul']['ref'],
args['zuul']['change_url']))
self.log.debug("Job root: %s" % (self.jobdir.root,))
tasks = []
projects = set()