Skip to content

Commit

Permalink
fix: TT-432 http method 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
snacktime81 committed Sep 25, 2024
1 parent dffd0db commit 522318a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ public boolean preHandle(HttpServletRequest request, HttpServletResponse respons
userId = null;
funnel = "not found funnel";
}
String httpMethod = request.getMethod();
String requestURI = request.getRequestURI();
String uuid = UUID.randomUUID().toString();

logger.info("REQUEST LOG: [ Funnel: {}, User ID: {}, Request URI: {}, UUID: {} ]", funnel, userId, requestURI, uuid);
logger.info("REQUEST LOG: [ Funnel: {}, User ID: {}, Http Method: {}, Request URI: {}, UUID: {} ]", funnel, userId, httpMethod, requestURI, uuid);
return true;
}

Expand Down

0 comments on commit 522318a

Please sign in to comment.