mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Move log to debug for wildcard pattern matching (#2064)
Signed-off-by: Trey Dockendorf <tdockendorf@osc.edu>
This commit is contained in:
parent
9e769d1fd0
commit
3b1fd912cb
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ func validateNumberWithStr(log logr.Logger, value interface{}, pattern string, o
|
||||||
|
|
||||||
// 2. wildcard match
|
// 2. wildcard match
|
||||||
if !wildcard.Match(pattern, typedValue) {
|
if !wildcard.Match(pattern, typedValue) {
|
||||||
log.Info("value failed wildcard check", "type", fmt.Sprintf("%T", typedValue), "value", typedValue, "check", pattern)
|
log.V(4).Info("value failed wildcard check", "type", fmt.Sprintf("%T", typedValue), "value", typedValue, "check", pattern)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
|
Loading…
Add table
Reference in a new issue