mirror of
https://gitee.com/johng/gf
synced 2026-06-06 02:25:47 +08:00
remove noisy internal logging content of package gcron (#2141)
This commit is contained in:
@ -16,7 +16,6 @@ import (
|
||||
"github.com/gogf/gf/v2/container/gtype"
|
||||
"github.com/gogf/gf/v2/errors/gcode"
|
||||
"github.com/gogf/gf/v2/errors/gerror"
|
||||
"github.com/gogf/gf/v2/internal/intlog"
|
||||
"github.com/gogf/gf/v2/os/gtimer"
|
||||
"github.com/gogf/gf/v2/util/gconv"
|
||||
)
|
||||
@ -138,18 +137,18 @@ func (entry *Entry) Close() {
|
||||
func (entry *Entry) checkAndRun(ctx context.Context) {
|
||||
currentTime := time.Now()
|
||||
if !entry.schedule.checkMeetAndUpdateLastSeconds(ctx, currentTime) {
|
||||
intlog.Printf(
|
||||
ctx,
|
||||
`timely check, current time does not meet cron job "%s"`,
|
||||
entry.getJobNameWithPattern(),
|
||||
)
|
||||
//intlog.Printf(
|
||||
// ctx,
|
||||
// `timely check, current time does not meet cron job "%s"`,
|
||||
// entry.getJobNameWithPattern(),
|
||||
//)
|
||||
return
|
||||
}
|
||||
intlog.Printf(
|
||||
ctx,
|
||||
`timely check, current time meets cron job "%s"`,
|
||||
entry.getJobNameWithPattern(),
|
||||
)
|
||||
//intlog.Printf(
|
||||
// ctx,
|
||||
// `timely check, current time meets cron job "%s"`,
|
||||
// entry.getJobNameWithPattern(),
|
||||
//)
|
||||
switch entry.cron.status.Val() {
|
||||
case StatusStopped:
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user