summaryrefslogtreecommitdiff
path: root/tablePull.go
diff options
context:
space:
mode:
Diffstat (limited to 'tablePull.go')
-rw-r--r--tablePull.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/tablePull.go b/tablePull.go
index 8e0a282..2e87e40 100644
--- a/tablePull.go
+++ b/tablePull.go
@@ -6,11 +6,13 @@ import (
"path/filepath"
"go.wit.com/lib/protobuf/gitpb"
+ "go.wit.com/log"
)
-func (f *Forge) PrintPullTable(all *gitpb.Repos) {
- tablePB := f.makePullTable(all)
+func (f *Forge) PrintPullTable(pb *gitpb.Repos) {
+ tablePB := f.makePullTable(pb)
tablePB.PrintTable()
+ log.Printf("fpb.PullTable: %d repos\n", pb.Len())
}
func (f *Forge) makePullTable(pb *gitpb.Repos) *gitpb.ReposTable {