diff --git a/src/main/java/yerong/wedle/calendar/service/CalendarEventService.java b/src/main/java/yerong/wedle/calendar/service/CalendarEventService.java index a84170e..0306dfa 100644 --- a/src/main/java/yerong/wedle/calendar/service/CalendarEventService.java +++ b/src/main/java/yerong/wedle/calendar/service/CalendarEventService.java @@ -53,16 +53,11 @@ public List convertToDto(List calendarEven notificationId )); } else { - System.out.println("=============="); - System.out.println("success"); - System.out.println("=============="); - startDate.datesUntil(endDate.plusDays(1)) .forEach(date -> { Notification notification = notificationRepository.findByMemberAndEventAndNotificationDate( member, calendarEvent, date).orElse(null); Long notificationId = notification != null ? notification.getNotificationId() : null; - System.out.println("notificationId: " + notificationId); boolean isActive = notification != null && notification.isActive() && notification.getNotificationDate().equals(date);