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:
parent
74b656768e
commit
c9b6c1f2f1
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue