diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 15:54:32 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 15:54:32 -0500 |
| commit | 7e2caa9290f8ff5d583283646bdba85baf25b8af (patch) | |
| tree | b9f41b307255e9b5259681bce46d784fd00de9f2 /cleanGoSum.go | |
| parent | 5147aa73de4f2e6949a5e6314883901aec9b5a71 (diff) | |
standard rill() with stats
Diffstat (limited to 'cleanGoSum.go')
| -rw-r--r-- | cleanGoSum.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cleanGoSum.go b/cleanGoSum.go index bfc1650..400ba07 100644 --- a/cleanGoSum.go +++ b/cleanGoSum.go @@ -49,20 +49,20 @@ func (f *Forge) CleanGoDepsCheckOk(check *gitpb.Repo) error { if f.Config.IsReadOnly(check.GetGoPath()) { ends += "(ignoring read-only) " if cleanVerbose { - log.Printf("%-48s ok error .%s. vs .%s. %s", depRepo.GetGoPath(), + log.Printf("%-48s ok error .%s. vs .%s. %s\n", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion(), ends) } } else { if f.CheckOverride(depRepo.GetGoPath()) { ends += "(override) " if cleanVerbose { - log.Printf("%-48s ok error .%s. vs .%s. %s", depRepo.GetGoPath(), + log.Printf("%-48s ok error .%s. vs .%s. %s\n", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion(), ends) // skip this gopath because it's probably broken forever } continue } else { - log.Printf("%-48s error %10s vs %10s %s", depRepo.GetGoPath(), + log.Printf("%-48s error %10s vs %10s %s\n", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion(), ends) errs := fmt.Sprintf("%s error %s vs %s %s", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion(), ends) |
