summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-20 11:00:06 -0600
committerJeff Carr <[email protected]>2024-02-20 11:00:06 -0600
commite1e81ab2bf60a3581555b3aed3898ee923756468 (patch)
tree740029c870a452ccce5450016a7f7e034419809a /git.go
parentd16cc92286616ab39926c21bb43dbfc3ec4e2486 (diff)
fix log output
Diffstat (limited to 'git.go')
-rw-r--r--git.go2
1 files changed, 1 insertions, 1 deletions
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()