diff options
| author | Jeff Carr <[email protected]> | 2024-11-13 11:56:02 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-13 11:56:02 -0600 |
| commit | a7c5499221034970d1d0089f4391c488391324dd (patch) | |
| tree | ec7c979a7ddbab08d5659a4cd034027758b96f53 /gitConfig.go | |
| parent | 009d8f3b9d743fb1fa891376d5c36290681e33f1 (diff) | |
quiet some outputv0.22.13
Diffstat (limited to 'gitConfig.go')
| -rw-r--r-- | gitConfig.go | 4 |
1 files 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 |
