Skip to content

Commit

Permalink
[BE] LoggingAspect 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinwook94 committed Dec 30, 2023
1 parent 74ffc45 commit 78bac8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void logRequest(JoinPoint joinPoint) {
.orElse("");

try {
log.info("[HTTP Request] {}, params & body={}", requestUrl, objectMapper.writeValueAsString(parameters));
log.info("[HTTP Request] {}, params={}", requestUrl, objectMapper.writeValueAsString(parameters));
} catch (JsonProcessingException e) {
log.warn("logging failed", e);
}
Expand Down

0 comments on commit 78bac8c

Please sign in to comment.