Skip to content

Commit

Permalink
fixup: change log level to error
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbrdn committed Jan 13, 2025
1 parent ffd7ddc commit 25cc118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/repos/http_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func (b *baseHttpRepo) doHttp(req *http.Request) (*http.Response, error) {
utils.GetLogger(req.Context(), "baseHttpRepo").Error(err.Error())
}
if resp.StatusCode >= http.StatusBadRequest {
utils.GetLogger(req.Context(), "baseHttpRepo").Debug("received error response from remote", "status", resp.StatusCode)
utils.GetLogger(req.Context(), "baseHttpRepo").Error("received error response from remote", "status", resp.StatusCode)
}
return resp, err
}
Expand Down

0 comments on commit 25cc118

Please sign in to comment.