This commit is contained in:
shoopea 2024-01-20 12:06:08 +01:00
parent 1dc1a2b378
commit 526c74ad21

View File

@ -9,7 +9,7 @@ import (
)
func (c *Client) req(method, path string, body io.Reader, intercept func(*http.Request)) (rs *http.Response, err error) {
log.Printf("Client.req(%s, %s)", req, path)
log.Printf("Client.req(%s, %s)", method, path)
var redo bool
var r *http.Request
var uri = PathEscape(Join(c.root, path))