mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-23 00:56:29 +00:00
add error to log
This commit is contained in:
parent
3abb11dab6
commit
73adbd9645
@ -39,13 +39,13 @@ class DockerBase(object):
|
||||
Need run inside executor.
|
||||
"""
|
||||
try:
|
||||
_LOGGER.info("Pull image %s tag %s", self.image, tag)
|
||||
_LOGGER.info("Pull image %s tag %s.", self.image, tag)
|
||||
image = self.dock.images.pull(self.image, tag=tag)
|
||||
|
||||
if tag != 'latest':
|
||||
image.tag(self.image, tag='latest')
|
||||
except docker.errors.APIError:
|
||||
_LOGGER.error("Can't pull %s:%s", self.image, tag)
|
||||
except docker.errors.APIError as err:
|
||||
_LOGGER.error("Can't pull %s:%s -> %s.", self.image, tag, err)
|
||||
return False
|
||||
return True
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user