From c7c54de39149e07c5cb03e8d8aa49793f32047de Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 6 Oct 2025 04:27:49 -0500 Subject: cleanup code further --- gitTag.common.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gitTag.common.go') diff --git a/gitTag.common.go b/gitTag.common.go index ac0f09c..635ca7d 100644 --- a/gitTag.common.go +++ b/gitTag.common.go @@ -118,10 +118,10 @@ func (repo *Repo) IsBranchLocal(findname string) *GitTag { if !strings.HasPrefix(t.Refname, "refs/heads") { continue } - path, filename := filepath.Split(t.Refname) - log.Log(INFO, "gitpb.IsBranch() tag:", path, filename, "from", repo.GetGoPath()) + _, filename := filepath.Split(t.Refname) + // log.Log(INFO, "gitpb.IsBranch() tag:", path, filename, "from", repo.GetGoPath()) if filename == findname { - log.Log(INFO, "gitpb.IsBranch() found tag:", path, filename, "from", repo.GetGoPath()) + // log.Log(INFO, "gitpb.IsBranch() found tag:", path, filename, "from", repo.GetGoPath()) return t } } -- cgit v1.2.3