Skip to content

Commit

Permalink
fix(#125) : 로그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
aeeazip committed Aug 22, 2023
1 parent 9ef479b commit 86a1cea
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ public BaseResponse<ProductsPagingListResDto> getProducts(@PathVariable String t
/* 메인 화면 페이징 처리 - 로그인0 */
@GetMapping("/{webId}/product-ranking/{type}/{page}")
public BaseResponse<ProductsPagingListResDto> getProducts(@PathVariable String webId, @PathVariable String type, @PathVariable int page, @AuthenticationPrincipal Member member) {
log.info("Member: " + member.toString());
log.info("프론트 요청 webId: " + webId);
log.info("프론트 요청 webtype: " + type);
log.info("api 요청 들어옴");
if(!member.getWebId().equals(webId)) {
throw new BaseException(MEMBER_NOT_FOUND);
Expand Down

0 comments on commit 86a1cea

Please sign in to comment.