Skip to content

Commit

Permalink
fix(ability): 에러 로그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gracefulBrown committed Apr 24, 2022
1 parent 9a7cd3c commit 39fc85b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public List<Ability> findByIdIn(Long memberId, List<Long> ids) {
.filter(it -> !it.isBelongsTo(memberId))
.findAny()
.ifPresent(it -> {
throw new RuntimeException(it.getName() + "는 본인의 역량이 아닙니다.");
throw new RuntimeException(it.getName() + "는 " + memberId + "의 역량이 아닙니다.");
});
return abilities;
}
Expand Down

0 comments on commit 39fc85b

Please sign in to comment.