From c9b6c1f2f1bfab5e683bbc8a5f5a29ee2e4aefe7 Mon Sep 17 00:00:00 2001 From: Pooja Singh <36136335+NoSkillGirl@users.noreply.github.com> Date: Sat, 14 Nov 2020 06:06:25 +0530 Subject: [PATCH] Supress Error Logs (#1255) * supressed validation and crd error log * small fix --- pkg/engine/generation.go | 2 +- pkg/webhooks/mutation.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/engine/generation.go b/pkg/engine/generation.go index dc226c61c2..577b2ec794 100644 --- a/pkg/engine/generation.go +++ b/pkg/engine/generation.go @@ -51,7 +51,7 @@ func filterRule(rule kyverno.Rule, resource unstructured.Unstructured, admission // add configmap json data to context if err := AddResourceToContext(log, rule.Context, resCache, jsonContext); err != nil { - log.Info("cannot add configmaps to context", "reason", err.Error()) + log.V(4).Info("cannot add configmaps to context", "reason", err.Error()) return nil } diff --git a/pkg/webhooks/mutation.go b/pkg/webhooks/mutation.go index 4048b88e12..43ad816c61 100644 --- a/pkg/webhooks/mutation.go +++ b/pkg/webhooks/mutation.go @@ -65,7 +65,7 @@ func (ws *WebhookServer) HandleMutation( err := ws.openAPIController.ValidateResource(*engineResponse.PatchedResource.DeepCopy(), engineResponse.PatchedResource.GetKind()) if err != nil { - logger.Error(err, "validation error", "policy", policy.Name) + logger.V(4).Info("validation error", "policy", policy.Name, "error", err) continue }