Browse Source

Merge pull request #1527 from aanand/remove-logging-on-run-rm

Remove logging on run --rm
(cherry picked from commit 5578ccbb0113e285a20aeeee820c03766ef1ae6e)

Signed-off-by: Aanand Prasad <[email protected]>
Daniel Nephin 10 years ago
parent
commit
dca3bbdea3
1 changed files with 0 additions and 1 deletions
  1. 0 1
      compose/cli/main.py

+ 0 - 1
compose/cli/main.py

@@ -348,7 +348,6 @@ class TopLevelCommand(Command):
             dockerpty.start(project.client, container.id, interactive=not options['-T'])
             exit_code = container.wait()
             if options['--rm']:
-                log.info("Removing %s..." % container.name)
                 project.client.remove_container(container.id)
             sys.exit(exit_code)