Skip to content

Commit

Permalink
Log headers at trace instead of debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gaul committed Aug 29, 2023
1 parent 24fb1dd commit 4706b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/gaul/s3proxy/S3ProxyHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ public final void doHandle(HttpServletRequest baseRequest,
for (String headerName : Collections.list(request.getHeaderNames())) {
for (String headerValue : Collections.list(request.getHeaders(
headerName))) {
logger.debug("header: {}: {}", headerName,
logger.trace("header: {}: {}", headerName,
Strings.nullToEmpty(headerValue));
}
if (headerName.equalsIgnoreCase(HttpHeaders.DATE)) {
Expand Down

0 comments on commit 4706b17

Please sign in to comment.