Skip to content

Commit

Permalink
reduce noise in logs (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
jagonalez authored Feb 1, 2022
1 parent 4bcbf99 commit a01c939
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cron/queue_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ func (c *QueueJob) Run() {
// job has already been validated as a proper job on startup
if err := c.Subsystem.Server.Manager().Push(&job); err != nil {
util.Warnf("Execute: unable to queue job (%s): %v", c.job.Name, err)
return
}
util.Infof("Queueing job: %s", c.job.Name)
util.Debugf("Queueing job: %s", c.job.Name)

return
}

0 comments on commit a01c939

Please sign in to comment.