Skip to content

Commit

Permalink
fix: festivalIds -> festivalIds.size() ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjin8678 committed May 6, 2024
1 parent fbcd981 commit 22eac13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void renewalByFestivalId(Long festivalId) {

public void renewalByFestivalStartDatePeriod(LocalDate to, LocalDate end) {
List<Long> festivalIds = adminFestivalIdResolverQueryDslRepository.findFestivalIdsByStartDatePeriod(to, end);
log.info("{}๊ฐœ์˜ ์ถ•์ œ์— ๋Œ€ํ•ด QueryInfo๋ฅผ ์ƒˆ๋กœ ๊ฐฑ์‹ ํ•ฉ๋‹ˆ๋‹ค.", festivalIds);
log.info("{}๊ฐœ์˜ ์ถ•์ œ์— ๋Œ€ํ•ด QueryInfo๋ฅผ ์ƒˆ๋กœ ๊ฐฑ์‹ ํ•ฉ๋‹ˆ๋‹ค.", festivalIds.size());
festivalIds.forEach(festivalQueryInfoArtistRenewService::renewArtistInfo);
adminStageIdResolverQueryDslRepository.findStageIdsByFestivalIdIn(festivalIds)
.forEach(stageQueryInfoService::renewalStageQueryInfo);
Expand Down

0 comments on commit 22eac13

Please sign in to comment.