mirror of https://github.com/docker/compose.git
Include service name in log message
This commit is contained in:
parent
5ba7040df2
commit
aaf90639a0
|
@ -101,7 +101,7 @@ class Project(object):
|
|||
if service.can_be_built():
|
||||
service.build(**options)
|
||||
else:
|
||||
log.info('%s uses an image, skipping')
|
||||
log.info('%s uses an image, skipping' % service.name)
|
||||
|
||||
def remove_stopped(self, service_names=None, **options):
|
||||
for service in self.get_services(service_names):
|
||||
|
|
Loading…
Reference in New Issue