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