Browse Source

Fix missing logging on container creation

Signed-off-by: Aanand Prasad <[email protected]>
Aanand Prasad 10 years ago
parent
commit
30c9e7323a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      compose/service.py

+ 3 - 0
compose/service.py

@@ -215,6 +215,9 @@ class Service(object):
             previous_container=previous_container,
         )
 
+        if 'name' in container_options:
+            log.info("Creating %s..." % container_options['name'])
+
         return Container.create(self.client, **container_options)
 
     def ensure_image_exists(self,