Skip to content

Commit

Permalink
#Test: For Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nareunhang committed Oct 31, 2024
1 parent 9fb044e commit 44ec6d8
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ public SingleResult<MemberCredentialDTO> getMember(@RequestParam String email) {
findMember.getSecret_key()
);
System.out.println(memberCredentialDTO);
SingleResult<MemberCredentialDTO> result = responseService.getSingleResult(memberCredentialDTO);
System.out.println(result); // 디버깅을 위해 결과를 출력
return result;
return responseService.getSingleResult(memberCredentialDTO);
} else {
return (SingleResult<MemberCredentialDTO>) responseService.getFailResult();
}
Expand Down

0 comments on commit 44ec6d8

Please sign in to comment.