diff --git a/interop/http09/client.go b/interop/http09/client.go index 6c1c53c9d..14f45d3e0 100644 --- a/interop/http09/client.go +++ b/interop/http09/client.go @@ -5,6 +5,7 @@ import ( "crypto/tls" "errors" "io/ioutil" + "log" "net" "net/http" "strings" @@ -38,6 +39,8 @@ func (r *RoundTripper) RoundTrip(req *http.Request) (*http.Response, error) { return nil, errors.New("only GET requests supported") } + log.Printf("Requesting %s.\n", req.URL) + r.mutex.Lock() hostname := authorityAddr("https", hostnameFromRequest(req)) if r.clients == nil {