From 6f01480d8a7a338b4b24cc63691894d7ca4898cc Mon Sep 17 00:00:00 2001 From: Alik Khilazhev <7482065+alikhil@users.noreply.github.com> Date: Fri, 19 Sep 2025 17:37:57 +0200 Subject: [PATCH] Update pkg/downloader/manager.go Co-authored-by: Evans Mungai Signed-off-by: Alik Khilazhev <7482065+alikhil@users.noreply.github.com> --- pkg/downloader/manager.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/downloader/manager.go b/pkg/downloader/manager.go index 8a273895f..0c65550cf 100644 --- a/pkg/downloader/manager.go +++ b/pkg/downloader/manager.go @@ -241,6 +241,7 @@ func (m *Manager) doUpdate(chartPath string) error { } func (m *Manager) loadChartDir(chartPath string) (*chart.Chart, error) { + slog.Debug("loading chart directory", "chartPath", chartPath) if fi, err := os.Stat(chartPath); err != nil { return nil, fmt.Errorf("could not find %s: %w", chartPath, err) } else if !fi.IsDir() {