Raised logging level for Docker pull message

This commit is contained in:
Brad Warren 2015-07-22 19:02:53 -07:00
parent 71d12f005d
commit 1a1ce7edcf

View file

@ -69,7 +69,7 @@ class Proxy(object):
def start_docker(self, image_name, command):
"""Creates and runs a Docker container with the specified image"""
logger.info("Pulling Docker image. This may take a minute.")
logger.warning("Pulling Docker image. This may take a minute.")
for line in self._docker_client.pull(image_name, stream=True):
logger.debug(line)