Ansible launcher: add '|' to zuul_log

To match the format in zuul_runner.

Change-Id: I863e4735ffebfc890782242bd3593a421bfb141b
This commit is contained in:
James E. Blair 2016-06-21 08:13:53 -07:00
parent b547ae9542
commit 4cbf88565b
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class Console(object):
def addLine(self, ln):
ts = datetime.datetime.now()
outln = '%s %s' % (str(ts), ln)
outln = '%s | %s' % (str(ts), ln)
self.logfile.write(outln)