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

Supress Error Logs (#1255)

* supressed  validation and crd error log

* small fix
This commit is contained in:
Pooja Singh 2020-11-14 06:06:25 +05:30 committed by GitHub
parent 74b656768e
commit c9b6c1f2f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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
}

View file

@ -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
}