From 511a9beedee288310fb6941474413f087caed401 Mon Sep 17 00:00:00 2001 From: Dustin Lacewell Date: Wed, 5 Feb 2014 17:19:18 -0800 Subject: [PATCH] Tell fig up to print logs before attaching --- fig/cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fig/cli/main.py b/fig/cli/main.py index 66d2bdf289..5f3183abf7 100644 --- a/fig/cli/main.py +++ b/fig/cli/main.py @@ -292,7 +292,7 @@ class TopLevelCommand(Command): if not detached: to_attach = [c for (s, c) in new] print("Attaching to", list_containers(to_attach)) - log_printer = LogPrinter(to_attach) + log_printer = LogPrinter(to_attach, attach_params={"logs": True}) for (service, container) in new: service.start_container(container)