diff options
| author | Jeff Carr <[email protected]> | 2025-09-23 09:36:15 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-23 09:36:15 -0500 |
| commit | 4eada310b83d28d6406a6e44d453749e1ed9502a (patch) | |
| tree | 3e68fb99780c7c74560fbb94dc6a09ee4edfb6b5 /patchset.Make.go | |
| parent | 643be0abeac87f4d71c43c221410b6bfc3191962 (diff) | |
make a standard set.PrintTable()
Diffstat (limited to 'patchset.Make.go')
| -rw-r--r-- | patchset.Make.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/patchset.Make.go b/patchset.Make.go index 75c4215..c8bfdc0 100644 --- a/patchset.Make.go +++ b/patchset.Make.go @@ -140,7 +140,7 @@ func (pset *Set) makePatchSetNew(repo *gitpb.Repo) error { err = pset.addPatchFiles(repo, repoDir) log.Infof("Added %d patches for %s len=%d\n", len(r.Stdout), repo.FullPath, pset.Patches.Len()) - pset.PrintTable() + // pset.PrintTable() return err } @@ -186,7 +186,7 @@ func (p *Set) addPatchFiles(repo *gitpb.Repo, fullDir string) error { p.Patches = new(Patches) } p.Patches.Append(patch) - log.Info("ADDED PATCH FILE", path) + // log.Info("ADDED PATCH FILE", path) return nil }) return baderr |
