Skip to content

Commit

Permalink
[Fix] 유저정보 로그확인 코드 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
jodonghyeon3 committed Jan 29, 2024
1 parent 5ef9b4a commit e3bb6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/example/soonsul/util/UserUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public User getUserByAuthentication(){
return userRepository.findById(authentication.getName())
.orElseThrow(() -> new UserNotExist("login user not exist", ErrorCode.USER_NOT_EXIST));
} catch (Exception e) {
log.error(e + "유저인증");
log.error(authentication.getName());
throw new RuntimeException("");
}

Expand Down

0 comments on commit e3bb6c9

Please sign in to comment.