diff options
| author | Jeff Carr <[email protected]> | 2025-10-07 11:36:35 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-07 11:36:35 -0500 |
| commit | 6abbecf0bf0ca87b3d2049e9cfe33365d9c9dda4 (patch) | |
| tree | b5858b138b2cfd83fb5fda2b5309ff877852a797 /tablePatches.go | |
| parent | a0e2897e2dc678986b080380af871f4d0e48421a (diff) | |
more table summary statsv0.0.171
Diffstat (limited to 'tablePatches.go')
| -rw-r--r-- | tablePatches.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tablePatches.go b/tablePatches.go index f6eb983..1a8a1e2 100644 --- a/tablePatches.go +++ b/tablePatches.go @@ -16,6 +16,7 @@ func (pset *Set) PrintTable() { tablePB := pset.Patches.MakeTable() tablePB.PrintTable() + log.Printf("pset.DefaultTable: %d patches\n", pset.Patches.Len()) } func (pb *Sets) PrintTable() { @@ -25,6 +26,7 @@ func (pb *Sets) PrintTable() { } tablePB := pset.Patches.MakeTable() tablePB.PrintTable() + log.Printf("psets.DefaultTable loop: %d patches\n", pset.Patches.Len()) } } @@ -33,6 +35,7 @@ func (pb *Patches) PrintTable() { tablePB := pb.MakeTable() tablePB.PrintTable() + log.Printf("pb.DefaultTable: %d patches\n", pb.Len()) } func (pb *Patches) MakeTable() *PatchesTable { |
