From 4856db7e794d4a939df8ba1eea1fd7a1bc4105b2 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Tue, 9 May 2017 02:50:32 -0700 Subject: [PATCH] Print entire progress object Should be moved into structlog soon --- builder/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/app.py b/builder/app.py index fefb38b1..1085b20a 100644 --- a/builder/app.py +++ b/builder/app.py @@ -81,7 +81,7 @@ class Builder(Application): client = docker.from_env(version='1.23') for line in client.images.push(self.output_image_spec, stream=True): progress = json.loads(line.decode('utf-8')) - print(progress['status']) + print(progress) if __name__ == '__main__': f = Builder()