From 84f260e6b53253c497b9569185f181d696fa3874 Mon Sep 17 00:00:00 2001 From: Alik Khilazhev <7482065+alikhil@users.noreply.github.com> Date: Fri, 19 Sep 2025 17:38:15 +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 0c65550cf..9c05b5b22 100644 --- a/pkg/downloader/manager.go +++ b/pkg/downloader/manager.go @@ -795,6 +795,7 @@ func (m *Manager) findChartURL(name, version, repoURL string, repos map[string]* // The returned list of Chart paths is ordered from "leaf to root" so we can issue updates in // the right order when iterating over this list. func (m *Manager) locateLocalDependencies(baseChartPath string, resursive bool) ([]string, error) { + slog.Debug("locating local dependencies", "baseChartPath", baseChartPath, "resursive", resursive) reversedDeps := []string{} baseChart, err := m.loadChartDir(baseChartPath)