1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-02 15:54:32 +00:00

Log forget error in debug

This commit is contained in:
Alena Prokharchyk
2018-08-16 09:28:13 -07:00
parent 12c3f92bed
commit 1d3cf7aee8

View File

@@ -204,7 +204,7 @@ func (g *genericController) processNextWorkItem() bool {
} }
if _, ok := checkErr.(*ForgetError); err == nil || ok { if _, ok := checkErr.(*ForgetError); err == nil || ok {
if ok { if ok {
logrus.Infof("%v %v completed with dropped err: %v", g.name, key, err) logrus.Debugf("%v %v completed with dropped err: %v", g.name, key, err)
} }
g.queue.Forget(key) g.queue.Forget(key)
return true return true