Skip to content

Commit

Permalink
[fix] 콘솔
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryeolee committed Jul 8, 2024
1 parent b6ea9c9 commit c682d52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ public static List<MyVeggieRoutine> processData(List<Routine> routineList){
return routineList.stream()
.map(routine -> {
boolean check;
log.info(String.valueOf(routine.getDate()));
log.info("true/false 체크");
check = signRoutineCheck(routine.getDate());
return MyVeggieRoutine.of(routine, check);
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public BaseResponseDto<Void> settingMyVeggieRoutine(

@Transactional
public List<MyVeggieRoutine> selectMyVeggieRoutineById(MyVeggie myVeggie) {

log.info("채소별 리스트 서비스 시작");
List<Routine> routineList = myVeggieRepository.findMyVeggieRoutineById(myVeggie);
return MyVeggieRoutine.processData(routineList);
}
Expand Down

0 comments on commit c682d52

Please sign in to comment.