diff --git a/pkg/kwrapper/etcd/etcd_linux.go b/pkg/kwrapper/etcd/etcd_linux.go index 715b142d..00675203 100644 --- a/pkg/kwrapper/etcd/etcd_linux.go +++ b/pkg/kwrapper/etcd/etcd_linux.go @@ -6,6 +6,7 @@ import ( "io" "io/ioutil" "net/http" + "os" "os/exec" "path/filepath" "strings" @@ -65,6 +66,8 @@ func runEtcd(ctx context.Context, args []string) { cmd.SysProcAttr = &syscall.SysProcAttr{ Pdeathsig: syscall.SIGKILL, } + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr logrus.Info("Running ", strings.Join(args, " ")) cmd.Run()