Report api request throttling at v=3

Kubernetes-commit: e7cc2c2d280f319b78462a37d32c5c7f1e6e5567
This commit is contained in:
Robert Krawitz 2019-07-26 12:59:34 -04:00 committed by Kubernetes Publisher
parent 3922ef2909
commit c02e303b36

View File

@ -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