Skip to content

Commit

Permalink
Merge pull request #179 from softeerbootcamp4th/feature/#157-monitoring
Browse files Browse the repository at this point in the history
fix: request 요청 로그 찍을 때 쿼리 스트링 형식 변경
  • Loading branch information
k000927 authored Aug 19, 2024
2 parents 78edf8d + 5f65e29 commit 1f61969
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public boolean preHandle(@NonNull HttpServletRequest request, @NonNull HttpServl

String queryString = request.getQueryString();

log.info("Request [{}{}]", requestURI, queryString);
log.info("Request [{}] QueryString [{}]", requestURI, queryString);

// 요청의 헤더에 requestId 추가 (선택 사항)
response.addHeader(REQUEST_ID, requestId);
Expand Down

0 comments on commit 1f61969

Please sign in to comment.