From 065a95f8c50e21561a4ca961c964ee333c054f1e Mon Sep 17 00:00:00 2001 From: Gyorgy Nadaban Date: Tue, 18 Jun 2024 11:19:39 -0400 Subject: [PATCH] Update debug log message as per PR ask Signed-off-by: Gyorgy Nadaban --- internal/argocd/revision.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/argocd/revision.go b/internal/argocd/revision.go index 24ed8e7c3..1083936b7 100644 --- a/internal/argocd/revision.go +++ b/internal/argocd/revision.go @@ -73,8 +73,8 @@ func GetDesiredRevisionFromSource( } } case s.RepoURL != "": - // This source points to a Git repository. - sourceLogger.Debug("Application source is a Helm chart, without a chart name", "repoURL", s.RepoURL, "path", s.Path) + // This source points to a directory in a Git repository. + sourceLogger.Debug("Application source is a Git repository", "repoURL", s.RepoURL, "path", s.Path) sourceGitRepoURL := git.NormalizeURL(s.RepoURL) for _, commit := range freight.Commits { if git.NormalizeURL(commit.RepoURL) != sourceGitRepoURL {