Revert "Log requests to GCE"

This reverts commit 55fdc1c036.
pull/6/head
Zach Loafman 2016-05-25 14:23:41 -07:00
parent 025b017277
commit 4adc542667
1 changed files with 0 additions and 3 deletions

View File

@ -118,10 +118,7 @@ type rateLimitedRoundTripper struct {
}
func (rl *rateLimitedRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
startTime := time.Now()
rl.limiter.Accept()
// TODO: Reduce verbosity once #26119 is fixed.
glog.V(0).Infof("GCE api call: %s %s (throttled for %v)", req.Method, req.URL.String(), time.Now().Sub(startTime))
return rl.rt.RoundTrip(req)
}