From e1e81ab2bf60a3581555b3aed3898ee923756468 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 20 Feb 2024 11:00:06 -0600 Subject: [PATCH] fix log output --- git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.go b/git.go index 0bd8c1b..f67bc63 100644 --- a/git.go +++ b/git.go @@ -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()