Ver código fonte

Change log level to debug when starting workers

Frédéric Guillot 7 anos atrás
pai
commit
3e392dc3ae
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      worker/worker.go

+ 1 - 1
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