change throttling debug output log level

This commit is contained in:
AdoHe 2016-03-18 00:19:53 -04:00
parent 2880708444
commit 6c84fe5a69

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())
}
}