From abf95de91e78953206dbe3fa98ce9313737c6fa9 Mon Sep 17 00:00:00 2001 From: Benoit Tigeot Date: Wed, 10 Sep 2025 12:09:07 +0200 Subject: [PATCH] Do not remove necessary logs Signed-off-by: Benoit Tigeot --- pkg/chart/common/util/jsonschema.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/chart/common/util/jsonschema.go b/pkg/chart/common/util/jsonschema.go index a24ee3a21..b910f776b 100644 --- a/pkg/chart/common/util/jsonschema.go +++ b/pkg/chart/common/util/jsonschema.go @@ -81,6 +81,7 @@ func ValidateAgainstSchema(ch chart.Charter, values map[string]any) error { } var sb strings.Builder if chrt.Schema() != nil { + slog.Debug("chart name", "chart-name", chrt.Name()) err := ValidateAgainstSingleSchema(values, chrt.Schema(), chrt.ChartFullPath()) if err != nil { fmt.Fprintf(&sb, "%s:\n", chrt.Name())