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 4267c9a commit 75b3069
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
@AllArgsConstructor
@NoArgsConstructor
@Getter
@Slf4j
public class MyVeggieRoutine {

private Boolean check;
Expand Down Expand Up @@ -52,6 +53,8 @@ private static Boolean signRoutineCheck(Date date){
if (date.equals(LocalDate.now())) {
check = false;
}
log.info(String.valueOf(date));
log.info(String.valueOf(LocalDate.now()));
return check;
}

Expand Down

0 comments on commit 75b3069

Please sign in to comment.