From aa8dc26fed3ebb46d3dcf20bd442c98f8591df54 Mon Sep 17 00:00:00 2001 From: Yusuke Kuoka Date: Sun, 13 Sep 2020 20:20:16 +0900 Subject: [PATCH] Fix invalid log format --- pkg/helmfile/utility.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/helmfile/utility.go b/pkg/helmfile/utility.go index c18f97c..247b9b9 100644 --- a/pkg/helmfile/utility.go +++ b/pkg/helmfile/utility.go @@ -79,7 +79,7 @@ func runCommand(cmd *exec.Cmd, state *State, diffMode bool) (*State, error) { } out := output.String() - log.Printf("[DEBUG] Output of `%s %s` was:\n%s", strings.Join(cmd.Args, " "), out) + log.Printf("[DEBUG] Output of `%s` was:\n%s", strings.Join(cmd.Args, " "), out) var exitStatus int if runErr != nil { switch ee := runErr.(type) {