// Copyright 2025 WIT.COM Inc Licensed GPL 3.0 package forgepb import ( "go.wit.com/lib/protobuf/gitpb" "go.wit.com/log" ) func (f *Forge) PrintErrorsTB(pb *gitpb.Repos) string { pb = pb.SortActual() var col *gitpb.RepoFunc t := f.makeDefaultBaseTB(pb) col = t.AddStateChange() col.Width = 16 col = t.AddState() col.Width = -1 t.PrintTable() return log.Sprintf("f.ErrorsTB(): total=(%d)", pb.Len()) }