Skip to content

Commit

Permalink
remove logging statement
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
willnorris committed Dec 26, 2013
1 parent b109a87 commit 405faae
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion proxy/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 405faae

Please sign in to comment.