Fix parameters for logging the extra data needed
This commit is contained in:
parent
daa43c3bb9
commit
07aab4274c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
})
|
||||
|
|
Reference in a new issue