From e130c0ded1671658c60b7b66c9fe9b0877e52eeb Mon Sep 17 00:00:00 2001 From: l1b0k Date: Thu, 30 Nov 2023 13:53:46 +0800 Subject: [PATCH] Fix: format type %d->%f Signed-off-by: l1b0k --- connectivity/check/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connectivity/check/context.go b/connectivity/check/context.go index b88c0b3904..ad92fe8cd6 100644 --- a/connectivity/check/context.go +++ b/connectivity/check/context.go @@ -618,7 +618,7 @@ func (ct *ConnectivityTest) report() error { ct.Logf("%s", strings.Repeat("-", 145)) for p, d := range ct.PerfResults { ct.Logf("📋 %-15s | %-50s | %-15s | %-15d | %-15s | %.2f (%s)", d.Scenario, p.Pod, p.Test, d.Samples, d.Duration, d.Avg, d.Metric) - ct.Debugf("Individual Values from run : %s", d.Values) + ct.Debugf("Individual Values from run : %f", d.Values) } ct.Logf("%s", strings.Repeat("-", 145)) }