From 437463d719c34a6df88109d79c78256b0499d837 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 23 Mar 2026 16:52:07 -0700 Subject: [PATCH] Update modules/git/repo_commit.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Lunny Xiao --- modules/git/repo_commit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git/repo_commit.go b/modules/git/repo_commit.go index 6702e235b6..cc463f5007 100644 --- a/modules/git/repo_commit.go +++ b/modules/git/repo_commit.go @@ -29,7 +29,7 @@ func (repo *Repository) GetTagCommitID(name string) (string, error) { // GetCommit returns commit object of by ID string. func (repo *Repository) GetCommit(commitID string) (*Commit, error) { if commit, ok := repo.commitCache[commitID]; ok { - log.Debug("repo commitCache hit: [%s:%s:%s]", repo.Path, commitID) + log.Debug("repo commitCache hit: [%s:%s]", repo.Path, commitID) return commit, nil }