Change log level to debug when starting workers
This commit is contained in:
parent
35b890aadc
commit
3e392dc3ae
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue