summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--find.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/find.go b/find.go
index 5a838fa..2022a43 100644
--- a/find.go
+++ b/find.go
@@ -217,17 +217,17 @@ func cloneReposWithPatches() *gitpb.Repos {
continue
}
if repo.IsLocalBranchVerbose(repo.GetUserBranchName()) {
- log.Info("BRANCH IS LOCAL", THEBRANCH)
+ log.Info(repo.FullPath, "BRANCH IS LOCAL", THEBRANCH)
// everthing is actually normal
continue
} else {
- log.Info("BRANCH IS NOT LOCAL", THEBRANCH)
+ log.Info(repo.FullPath, "BRANCH IS NOT LOCAL", THEBRANCH)
repo.RunVerbose([]string{"bash", "-c", "git show-ref |grep -v tags"})
}
stop += 1
if stop < 5 {
for t := range repo.Tags.IterAll() {
- log.Info(repo.Namespace, t.Refname)
+ log.Info("pb thinks it has:", repo.Namespace, t.Refname)
}
} else {
panic("stop")