1
0
mirror of https://github.com/containous/traefik.git synced 2025-08-29 01:49:33 +03:00

change log error of "ruleType" to warning

This commit is contained in:
AlmogBaku
2016-05-17 16:54:40 +03:00
parent 895f3cc109
commit 8210743dad

View File

@ -177,7 +177,7 @@ func (provider *Kubernetes) loadIngresses(k8sClient k8s.Client) (*types.Configur
case "pathprefix":
ruleType = "PathPrefix"
default:
log.Debugf("Unknown RuleType `%s`, falling back to `PathPrefix", ruleType)
log.Warnf("Unknown RuleType `%s`, falling back to `PathPrefix", ruleType)
ruleType = "PathPrefix"
}