temp logging to debug

This commit is contained in:
Jeff Carr 2024-12-02 08:45:27 -06:00
parent 86e0a1f988
commit 189d305fee
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import (
// it re-scans the go.sum file. DOES NOT MODIFY ANYTHING
// this is the last thing to run to double check everything
// before 'git tag' or git push --tags
func (f *Forge) FinalGoDepsCheck(check *gitpb.Repo) bool {
func (f *Forge) FinalGoDepsCheckOk(check *gitpb.Repo) bool {
var good bool = true
if check == nil {
log.Info("boo, check == nil")
@ -42,7 +42,7 @@ func (f *Forge) FinalGoDepsCheck(check *gitpb.Repo) bool {
if f.IsReadOnly(depRepo.GetGoPath()) {
log.Printf("%-48s ok error %10s vs %10s (ignoring read-only repo)", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion())
} else {
log.Printf("%-48s error %10s vs %10s", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion())
log.Printf("%-48s error %10s vs %10s", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion())
good = false
}
}