Skip to content

Commit e3fdfc8

Browse files
committed
debug message change
1 parent 5270650 commit e3fdfc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httpclient/request.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ func (c *Client) requestWithRetries(method, endpoint string, body, out interface
218218
func (c *Client) requestNoRetries(method, endpoint string, body, out interface{}) (*http.Response, error) {
219219
ctx := context.Background()
220220

221-
c.Sugar.Debug("Executing request without retries", zap.String("method", method), zap.String("endpoint", endpoint))
221+
c.Sugar.Debugw("Executing request without retries", "method", method, "endpoint", endpoint)
222222

223223
resp, err := c.request(ctx, method, endpoint, body)
224224
if err != nil {

0 commit comments

Comments
 (0)