From 405faae777d8b0547968b37f5eef782838e84bad Mon Sep 17 00:00:00 2001 From: Will Norris Date: Thu, 26 Dec 2013 09:07:06 -0800 Subject: [PATCH] remove logging statement now that httpcache hides the actual HTTP calls, this logging line doesn't accurately reflect when the images is actually fetched. It would be nice to get accurate logging back again. --- proxy/proxy.go | 1 - 1 file changed, 1 deletion(-) diff --git a/proxy/proxy.go b/proxy/proxy.go index 75a2d96..f6e9f37 100644 --- a/proxy/proxy.go +++ b/proxy/proxy.go @@ -151,7 +151,6 @@ func (p *Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) { } func (p *Proxy) fetchRemoteImage(u string) (*data.Image, error) { - glog.Infof("fetching remote image: %s", u) resp, err := p.Client.Get(u) if err != nil { return nil, err