Skip to content

Commit

Permalink
fix issue with hugh logging on schedules (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
elopezcastro authored Oct 18, 2023
1 parent da2eece commit fc6c8e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private void execute(ScheduleInfo schedule, boolean forceRun)
this.instancesStore.insert(new ScheduleInstance(schedule.name,toDate(LocalDateTime.now().plusSeconds(schedule.frequency / 1000L))));
LOGGER.info("Starting schedule {} ", schedule.name);
Object result = functions.get(schedule.name).get();
LOGGER.info("Schedule {} result {}", schedule.name, result);
LOGGER.info("Schedule {} completed", schedule.name);
}
else
{
Expand Down

0 comments on commit fc6c8e0

Please sign in to comment.