Report api request throttling at v=3

This commit is contained in:
Robert Krawitz 2019-07-26 12:59:34 -04:00
parent 2c2ca27bfc
commit e7cc2c2d28

View File

@ -535,7 +535,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