diff options
| author | Jeff Carr <[email protected]> | 2025-10-07 11:10:53 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-07 11:10:53 -0500 |
| commit | a0e2897e2dc678986b080380af871f4d0e48421a (patch) | |
| tree | 96e885392efa887378e10da088b6b7006a0f3db0 /tablePull.go | |
| parent | 0b584dc4555de86ff9caea837fe59ac6f3cfee1b (diff) | |
rm old code. more table stats
Diffstat (limited to 'tablePull.go')
| -rw-r--r-- | tablePull.go | 6 |
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 { |
