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

Add some debug logging to see churn

This commit is contained in:
Darren Shepherd
2018-03-23 09:39:25 -07:00
parent 34fad5e159
commit fcf2b88855
2 changed files with 3 additions and 0 deletions

View File

@@ -246,6 +246,7 @@ func (g *genericController) syncHandler(s string) (err error) {
var errs []error
for _, handler := range g.handlers {
logrus.Debugf("%s calling handler %s %s", g.name, handler.name, s)
if err := handler.handler(s); err != nil {
errs = append(errs, &handlerError{
name: handler.name,