fix log output

This commit is contained in:
Jeff Carr 2024-02-20 11:00:06 -06:00
parent d16cc92286
commit e1e81ab2bf
1 changed files with 1 additions and 1 deletions

2
git.go
View File

@ -186,7 +186,7 @@ func (rs *RepoStatus) CheckoutBranch(bname string) bool {
}
if !rs.TagExists(bname) {
// tag does not exist
log.Info("bname already exists", bname, rs.Path())
log.Log(INFO, "repo does not have branch", bname, rs.Path())
return false
}
cName := rs.GetCurrentBranchName()