Skip to content

Commit

Permalink
Fix invalid log format
Browse files Browse the repository at this point in the history
  • Loading branch information
mumoshu committed Sep 13, 2020
1 parent df8701d commit aa8dc26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/helmfile/utility.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit aa8dc26

Please sign in to comment.