Skip to content

Commit

Permalink
Merge pull request #370 from twenty-three-23/feature/TT-432
Browse files Browse the repository at this point in the history
TT-432 http method 추가
  • Loading branch information
snacktime81 authored Sep 25, 2024
2 parents dffd0db + 522318a commit 86c85a9
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 86c85a9

Please sign in to comment.