Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rgw: use trace logs for RGW admin HTTP info #8937

Merged
merged 1 commit into from Oct 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions pkg/operator/ceph/object/admin.go
Expand Up @@ -72,7 +72,8 @@ func (c *debugHTTPClient) Do(req *http.Request) (*http.Response, error) {
if err != nil {
return nil, err
}
c.logger.Debugf("\n%s\n", string(dump))
// this can leak credentials for making requests
c.logger.Tracef("\n%s\n", string(dump))

resp, err := c.client.Do(req)
if err != nil {
Expand All @@ -84,7 +85,8 @@ func (c *debugHTTPClient) Do(req *http.Request) (*http.Response, error) {
if err != nil {
return nil, err
}
c.logger.Debugf("\n%s\n", string(dump))
// this can leak any sensitive info like credentials in the response
c.logger.Tracef("\n%s\n", string(dump))

return resp, nil
}
Expand Down