From ccdb97922df43de88fa46b88520eb7af1c76b87f Mon Sep 17 00:00:00 2001 From: Mik Vyatskov Date: Wed, 19 Jul 2017 16:53:34 +0200 Subject: [PATCH] Fix too extensive logging in Stackdriver Logging e2e tests --- test/e2e/instrumentation/logging/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/instrumentation/logging/utils.go b/test/e2e/instrumentation/logging/utils.go index b2c7a43cabe..420ef5035b5 100644 --- a/test/e2e/instrumentation/logging/utils.go +++ b/test/e2e/instrumentation/logging/utils.go @@ -227,7 +227,7 @@ func waitForFullLogsIngestion(f *framework.Framework, config *loggingTestConfig) config.IngestionTimeout, totalMissing, lostFraction*100) for podIdx, missing := range missingByPod { if missing != 0 { - framework.Logf("Still missing %d lines for pod %v", missing, config.Pods[podIdx]) + framework.Logf("Still missing %d lines for pod %s", missing, config.Pods[podIdx].Name) } } }