From c02e303b36e285cd59c60250623f9d0c7ee58e91 Mon Sep 17 00:00:00 2001 From: Robert Krawitz Date: Fri, 26 Jul 2019 12:59:34 -0400 Subject: [PATCH] Report api request throttling at v=3 Kubernetes-commit: e7cc2c2d280f319b78462a37d32c5c7f1e6e5567 --- rest/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/request.go b/rest/request.go index 9417d054..51b76e30 100644 --- a/rest/request.go +++ b/rest/request.go @@ -562,7 +562,7 @@ func (r *Request) tryThrottle() error { } if latency := time.Since(now); latency > longThrottleLatency { - klog.V(4).Infof("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String()) + klog.V(3).Infof("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String()) } return err