From 6abbecf0bf0ca87b3d2049e9cfe33365d9c9dda4 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 7 Oct 2025 11:36:35 -0500 Subject: more table summary stats --- tablePatches.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tablePatches.go') 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 { -- cgit v1.2.3