1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

improve error log

This commit is contained in:
Shuting Zhao 2020-11-03 15:41:17 -08:00
parent d8d5160bce
commit 8e0650804f

View file

@ -205,7 +205,7 @@ func validateString(log logr.Logger, value interface{}, pattern string, operator
ok = false
}
if !ok {
log.Info("unexpected type : ", "type", fmt.Sprintf("%T", value), "value", value)
log.V(4).Info("unexpected type", "got", value, "expect", pattern)
return false
}