Fix parameters for logging the extra data needed

This commit is contained in:
Joseph Schorr 2014-08-28 19:19:20 -04:00
parent daa43c3bb9
commit 07aab4274c

View file

@ -224,7 +224,7 @@ class DockerfileBuildContext(object):
logger.debug('Logging in with pull credentials: %s@%s',
self._pull_credentials['username'], self._pull_credentials['registry'])
self._build_logger('Pulling base image: %s' % image_and_tag, {
self._build_logger('Pulling base image: %s' % image_and_tag, log_data = {
'phasestep': 'login',
'username': self._pull_credentials['username'],
'registry': self._pull_credentials['registry']
@ -241,7 +241,7 @@ class DockerfileBuildContext(object):
image_and_tag = ':'.join(image_and_tag_tuple)
self._build_logger('Pulling base image: %s' % image_and_tag, {
self._build_logger('Pulling base image: %s' % image_and_tag, log_data = {
'phasestep': 'pull',
'repo_url': image_and_tag
})