Change log level to debug when starting workers

pull/292/head
Frédéric Guillot 5 years ago
parent 35b890aadc
commit 3e392dc3ae
  1. 2
      worker/worker.go

@ -18,7 +18,7 @@ type Worker struct {
// Run wait for a job and refresh the given feed.
func (w *Worker) Run(c chan model.Job) {
logger.Info("[Worker] #%d started", w.id)
logger.Debug("[Worker] #%d started", w.id)
for {
job := <-c

Loading…
Cancel
Save