From a7c5499221034970d1d0089f4391c488391324dd Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 13 Nov 2024 11:56:02 -0600 Subject: [PATCH] quiet some output --- gitConfig.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitConfig.go b/gitConfig.go index 029c473..389b028 100644 --- a/gitConfig.go +++ b/gitConfig.go @@ -280,10 +280,10 @@ func (rs *RepoStatus) BranchExists(branch string) bool { for i, t := range rs.Tags.tags { base := filepath.Base(t.tag.String()) if base == branch { - log.Info("found tag:", i, t.tag.String()) + log.Info("found branch tag:", i, t.tag.String()) return true } - log.Info("not tag:", i, t.tag.String()) + // log.Info("not tag:", i, t.tag.String()) } log.Log(REPOWARN, rs.Path(), "did not find branch", branch) return false