From 25768888a579c23c0cfa4f18d1a15b597b41acb0 Mon Sep 17 00:00:00 2001 From: Josh Curl Date: Thu, 30 Jun 2016 16:28:32 -0700 Subject: [PATCH] Only log once during upgrade --- cmd/control/os.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmd/control/os.go b/cmd/control/os.go index c492a784..84d91ddc 100644 --- a/cmd/control/os.go +++ b/cmd/control/os.go @@ -244,9 +244,7 @@ func startUpgradeContainer(image string, stage, force, reboot, kexec bool, upgra return err } - if err := container.Up(context.Background(), options.Up{ - Log: true, - }); err != nil { + if err := container.Up(context.Background(), options.Up{}); err != nil { return err }