Merge pull request #23175 from AdoHe/request_slow_log

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot 2016-03-19 22:08:11 -07:00
commit b9b3b5eb4c

View File

@ -624,7 +624,7 @@ func (r *Request) tryThrottle() {
r.throttle.Accept()
}
if latency := time.Since(now); latency > longThrottleLatency {
glog.Warningf("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String())
glog.V(4).Infof("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String())
}
}