diff options
| author | Jeff Carr <[email protected]> | 2025-09-25 21:35:59 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-25 21:35:59 -0500 |
| commit | 44bc7f6508769b43e28ab5de06e150a177b228ee (patch) | |
| tree | dcb974e30c9234b5c2a8c34ac416157ada936e9b /doPatch.go | |
| parent | d331af80e098dcead00b19b36eb607b0ad862690 (diff) | |
change outputv0.25.31
Diffstat (limited to 'doPatch.go')
| -rw-r--r-- | doPatch.go | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -123,7 +123,7 @@ func doPatchList() error { for patch := range pset.Patches.IterAll() { changed = true if err := isPatchIdApplied(patch); err == nil { - log.Info("patchId already applied", patch.PatchId, patch.Filename) + log.Infof("%s patchId already applied %s\n", patch.PatchId, patch.Filename) pset.Patches.Delete(patch) changed = true continue @@ -131,9 +131,9 @@ func doPatchList() error { if patch.NewHash == "" || patch.NewHash == "na" { if newpatches.Patches.AppendByPatchId(patch) { - log.Info("patchId added here", patch.PatchId) + log.Infof("%s patchId added here\n", patch.PatchId) } else { - log.Info("patchId already here", patch.PatchId) + log.Infof("%s patchId already here\n", patch.PatchId) pset.Patches.Delete(patch) changed = true } @@ -142,7 +142,7 @@ func doPatchList() error { log.Infof("%s bad check on patch failure %v\n", patch.Filename, err) return err } - log.Info("newhash set already here", patch.PatchId, patch.NewHash) + log.Infof("%s %s newhash set already here\n", patch.PatchId, patch.NewHash) } } } @@ -200,7 +200,6 @@ func doPatchList() error { newpb.PrintTable() return nil */ - return nil } // Shows repos that are: |
