Commit 9f73d242 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #49209 from crassirostris/sd-logging-e2e-soak-test-logging-fix

Automatic merge from submit-queue Fix too extensive logging in Stackdriver Logging e2e tests Since logging pod now includes a cache, printing it out makes build-log unusable.
parents 2853f46b ccdb9792
...@@ -227,7 +227,7 @@ func waitForFullLogsIngestion(f *framework.Framework, config *loggingTestConfig) ...@@ -227,7 +227,7 @@ func waitForFullLogsIngestion(f *framework.Framework, config *loggingTestConfig)
config.IngestionTimeout, totalMissing, lostFraction*100) config.IngestionTimeout, totalMissing, lostFraction*100)
for podIdx, missing := range missingByPod { for podIdx, missing := range missingByPod {
if missing != 0 { 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)
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment