Skip to content

Commit

Permalink
clarify log message
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Mason <andrew@planetscale.com>
  • Loading branch information
Andrew Mason committed Mar 6, 2024
1 parent c7c4319 commit b52a0ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/test/endtoend/cluster/vtctl_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func (vtctl *VtctlProcess) ExecuteCommandWithOutput(args ...string) (result stri
vtctl.Binary,
filterDoubleDashArgs(args, vtctl.VtctlMajorVersion)...,
)
log.Info(fmt.Sprintf("Executing vtctlclient with arguments %v", strings.Join(tmpProcess.Args, " ")))
log.Info(fmt.Sprintf("Executing vtctl with arguments %v", strings.Join(tmpProcess.Args, " ")))
resultByte, err := tmpProcess.CombinedOutput()
return filterResultForWarning(filterResultWhenRunsForCoverage(string(resultByte))), err
}
Expand All @@ -107,7 +107,7 @@ func (vtctl *VtctlProcess) ExecuteCommand(args ...string) (err error) {
vtctl.Binary,
filterDoubleDashArgs(args, vtctl.VtctlMajorVersion)...,
)
log.Info(fmt.Sprintf("Executing vtctlclient with arguments %v", strings.Join(tmpProcess.Args, " ")))
log.Info(fmt.Sprintf("Executing vtctl with arguments %v", strings.Join(tmpProcess.Args, " ")))
return tmpProcess.Run()
}

Expand Down

0 comments on commit b52a0ea

Please sign in to comment.