mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix: cleanup policy name is appended to logs (#10583)
Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> Co-authored-by: shuting <shuting@nirmata.com>
This commit is contained in:
parent
d57edc8530
commit
f738b027c3
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ func NewController(
|
|||
enqueueFunc := func(logger logr.Logger, operation, kind string) controllerutils.EnqueueFuncT[kyvernov2.CleanupPolicyInterface] {
|
||||
logger = logger.WithValues("kind", kind, "operation", operation)
|
||||
return func(obj kyvernov2.CleanupPolicyInterface) error {
|
||||
logger = logger.WithValues("name", obj.GetName())
|
||||
logger := logger.WithValues("name", obj.GetName())
|
||||
if obj.GetNamespace() != "" {
|
||||
logger = logger.WithValues("namespace", obj.GetNamespace())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue