diff options
Diffstat (limited to 'reloadRepoState.go')
| -rw-r--r-- | reloadRepoState.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/reloadRepoState.go b/reloadRepoState.go index 4b7eac6..9e17add 100644 --- a/reloadRepoState.go +++ b/reloadRepoState.go @@ -33,9 +33,9 @@ func (repo *Repo) setRepoState() { repo.State = "merge to main" // log.Info("master vs devel count is normal b1 == 0", b1) } else { - repo.State = "DEVEL < MASTER" + repo.State = "DEVEL behind MASTER" // log.Info("master vs devel count b1 != 0", b1) - log.Info("SERIOUS ERROR. DEVEL BRANCH NEEDS MERGE FROM MASTER b1 ==", b1, repo.GetGoPath()) + log.Infof("%s devel branch is behind master branch (missing %d commits)\n", repo.GetGoPath(), b1) } return } |
