浏览代码

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

Remove logging on run --rm
Daniel Nephin 10 年之前
父节点
当前提交
5578ccbb01
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      compose/cli/main.py

+ 0 - 1
compose/cli/main.py

@@ -349,7 +349,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)