From 4397bdedf3cedb3dd6e172e1013bc3c7dd712411 Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Thu, 7 Jan 2016 13:29:17 -0800 Subject: [PATCH] Errof -> Warningf --- test/e2e_node/gcloud/gcloud.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/gcloud/gcloud.go b/test/e2e_node/gcloud/gcloud.go index 40a0b6dedf..ea3c3153a9 100644 --- a/test/e2e_node/gcloud/gcloud.go +++ b/test/e2e_node/gcloud/gcloud.go @@ -142,7 +142,7 @@ func (gc *gCloudClientImpl) Run( // This is to help debug if the credential issues are persistent for a given host on a given run, or transient // And if downstream gcloud commands are also impacted for i := 0; i < 6 && err != nil && strings.Contains(string(out), "does not have any valid credentials"); i++ { - glog.Errorf("mkdir failed on host %s due to credential issues, retrying in 5 seconds %v %s", gc.host, err, out) + glog.Warningf("mkdir failed on host %s due to credential issues, retrying in 5 seconds %v %s", gc.host, err, out) time.Sleep(5 * time.Second) out, err = gc.Command("mkdir", "-p", tDir) }