Skip to content

Commit

Permalink
fix: Error 로그 format 오류 수정 #44
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Feb 8, 2024
1 parent 09aa132 commit f787986
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ public class TicketServiceUtils {
public static Ticket findTicketByMemberId(TicketRepository ticketRepository, final Long memberId) {
return ticketRepository.findByMemberId(memberId)
.orElseThrow(() -> new NotFoundException(ErrorCode.NOT_FOUND_TICKET_EXCEPTION,
String.format("회원ID(%d) 의 티켓 정보가 존재하지 않습니다.")));
String.format("회원ID(%d) 의 티켓 정보가 존재하지 않습니다.", memberId)));
}
}

0 comments on commit f787986

Please sign in to comment.