diff options
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 { |
