Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a090813

Browse files
committedAug 1, 2024·
bugfix
1 parent 163a02d commit a090813

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎response/success.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ func HandleAPISuccessResponse(resp *http.Response, out interface{}, sugar *zap.S
3939
}
4040

4141
// TODO do we need to redact some auth headers here? I think so.
42-
sugar.Debugw("HTTP Response Headers", zap.Any("Headers", resp.Header))
43-
sugar.Debugw("Raw HTTP Response", zap.String("Body", string(bodyBytes)))
42+
// sugar.Debugw("HTTP Response Headers", zap.Any("Headers", resp.Header))
43+
// sugar.Debugw("Raw HTTP Response", zap.String("Body", string(bodyBytes)))
4444

4545
bodyReader := bytes.NewReader(bodyBytes)
4646
contentType := resp.Header.Get("Content-Type")

0 commit comments

Comments
 (0)
Please sign in to comment.