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())