Change log level to debug when starting workers

This commit is contained in:
Frédéric Guillot 2018-12-02 21:21:18 -08:00
parent 35b890aadc
commit 3e392dc3ae
1 changed files with 1 additions and 1 deletions

View File

@ -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