fix log output
This commit is contained in:
parent
d16cc92286
commit
e1e81ab2bf
2
git.go
2
git.go
|
@ -186,7 +186,7 @@ func (rs *RepoStatus) CheckoutBranch(bname string) bool {
|
||||||
}
|
}
|
||||||
if !rs.TagExists(bname) {
|
if !rs.TagExists(bname) {
|
||||||
// tag does not exist
|
// 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
|
return false
|
||||||
}
|
}
|
||||||
cName := rs.GetCurrentBranchName()
|
cName := rs.GetCurrentBranchName()
|
||||||
|
|
Loading…
Reference in New Issue