From 5474c1e505e228c3b8d8944914fb50263cdd9408 Mon Sep 17 00:00:00 2001 From: "Tim St. Clair" Date: Mon, 18 Apr 2016 18:10:00 -0700 Subject: [PATCH] Change log level of integration framework log messages --- integration/framework/framework.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/framework/framework.go b/integration/framework/framework.go index ffec41e4..3207238c 100644 --- a/integration/framework/framework.go +++ b/integration/framework/framework.go @@ -332,7 +332,7 @@ func (self shellActions) Run(command string, args ...string) (string, string) { var stderr bytes.Buffer cmd.Stdout = &stdout cmd.Stderr = &stderr - glog.Errorf("About to run - %v", cmd.Args) + glog.Infof("About to run - %v", cmd.Args) err := cmd.Run() if err != nil { 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())