Skip to content

Commit

Permalink
fix: remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
jinlee1703 committed Sep 18, 2023
1 parent 564ba9b commit 643e890
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ public ResponseEntity<Message> appleCallback(@RequestBody String code) throws IO
})
public ResponseEntity<Message> signOut(HttpServletRequest request, @RequestBody SignOutDto signOutDto) {
String username = jwtProvider.getUsername(jwtProvider.resolveToken(request).substring(7));
System.out.println("성공?:" + signOutDto.getDeviceToken());
authService.signOut(username, signOutDto);
return ResponseEntity.ok().body(
Message.builder()
Expand Down

0 comments on commit 643e890

Please sign in to comment.