From 25c92f5c738ea04118a05e662f413c7e9ba11ed8 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 b94ed8840..621987d51 100644 --- a/pkg/chart/common/util/jsonschema.go +++ b/pkg/chart/common/util/jsonschema.go @@ -80,6 +80,7 @@ func ValidateAgainstSchema(ch chart.Charter, values map[string]interface{}) erro } 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 { sb.WriteString(fmt.Sprintf("%s:\n", chrt.Name()))