Skip to content

Commit 0937e87

Browse files
committed
Merge pull request #1229 from timstclair/integration
Change log level of integration framework log messages
2 parents 3118f9f + 5474c1e commit 0937e87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/framework/framework.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ func (self shellActions) Run(command string, args ...string) (string, string) {
332332
var stderr bytes.Buffer
333333
cmd.Stdout = &stdout
334334
cmd.Stderr = &stderr
335-
glog.Errorf("About to run - %v", cmd.Args)
335+
glog.Infof("About to run - %v", cmd.Args)
336336
err := cmd.Run()
337337
if err != nil {
338338
self.fm.T().Fatalf("Failed to run %q %v in %q with error: %q. Stdout: %q, Stderr: %s", command, args, self.fm.Hostname().Host, err, stdout.String(), stderr.String())

0 commit comments

Comments
 (0)