summaryrefslogtreecommitdiff
path: root/doExamine.go
diff options
context:
space:
mode:
Diffstat (limited to 'doExamine.go')
-rw-r--r--doExamine.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doExamine.go b/doExamine.go
index 8a4ca75..f87b411 100644
--- a/doExamine.go
+++ b/doExamine.go
@@ -259,12 +259,12 @@ func gitPushStrict(repo *gitpb.Repo, branchName string) error {
func requiresGitPush(repo *gitpb.Repo, branchName string) error {
b1 := countDiffObjects(repo, branchName, "origin/"+branchName)
b2 := countDiffObjects(repo, "origin/"+branchName, branchName)
- log.Info("jcarr vs origin count", b1, b2)
+ log.Info(branchName, "vs origin count", b1, b2)
if b1 == 0 && b2 == 0 {
return nil
}
if b1 != 0 {
- log.Info("jcarr vs origin count b1 != 0, b2 ==", b1, b2)
+ log.Info(branchName, "vs origin count b1 != 0, b2 ==", b1, b2)
log.Info("THIS MEANS THE LOCAL BRANCH NEEDS GIT PUSH TO ORIGIN BRANCH ==", b1)
if argv.Examine.Fix != nil {
return gitPushStrict(repo, branchName)