quiet some output

This commit is contained in:
Jeff Carr 2024-11-13 11:56:02 -06:00
parent 009d8f3b9d
commit a7c5499221
1 changed files with 2 additions and 2 deletions

View File

@ -280,10 +280,10 @@ func (rs *RepoStatus) BranchExists(branch string) bool {
for i, t := range rs.Tags.tags { for i, t := range rs.Tags.tags {
base := filepath.Base(t.tag.String()) base := filepath.Base(t.tag.String())
if base == branch { if base == branch {
log.Info("found tag:", i, t.tag.String()) log.Info("found branch tag:", i, t.tag.String())
return true 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) log.Log(REPOWARN, rs.Path(), "did not find branch", branch)
return false return false