Skip to content

Commit

Permalink
use info log instead of debug
Browse files Browse the repository at this point in the history
  • Loading branch information
reugn committed Apr 15, 2024
1 parent a68b809 commit 6ac9348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quartz/scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ func (sched *StdScheduler) validateJob(job ScheduledJob) (bool, func() (int64, e
now := NowNano()
if job.NextRunTime() < now-sched.opts.OutdatedThreshold.Nanoseconds() {
duration := time.Duration(now - job.NextRunTime())
logger.Debugf("Job %s is outdated %s.", job.JobDetail().jobKey, duration)
logger.Infof("Job %s is outdated %s.", job.JobDetail().jobKey, duration)
select {
case sched.opts.MisfiredChan <- job:
default:
Expand Down

0 comments on commit 6ac9348

Please sign in to comment.