From 282c659eb38013f4220a6f6913491a12ecc73e30 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 16 Oct 2025 03:06:39 -0500 Subject: quiet debug --- doVerify.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doVerify.go b/doVerify.go index 925eaa8..db5cf5e 100644 --- a/doVerify.go +++ b/doVerify.go @@ -30,9 +30,9 @@ func cleanNamespace(r *gitpb.Repo) string { gowork := me.forge.Config.ReposDir // todo: detect if using go.work file newpath, err := filepath.Rel(gowork, r.FullPath) - log.Info("cleanNamespace()", newpath, gowork, "is gowork. fullpath:", r.FullPath) + // log.Info("cleanNamespace()", newpath, gowork, "is gowork. fullpath:", r.FullPath) if err == nil { - log.Info("cleanNamespace returned", newpath) + // log.Info("cleanNamespace returned", newpath) // relative path to gosrc or gowork is the namespace return newpath } @@ -49,7 +49,7 @@ func doVerifyNamespace() (string, error) { for r := range me.forge.Repos.IterAll() { newpath := cleanNamespace(r) if newpath == "" { - log.Info("didn't work", r.Namespace, "to", newpath) + // log.Info("didn't work", r.Namespace, "to", newpath) // didn't work } else if newpath != r.Namespace { changed = true @@ -57,7 +57,7 @@ func doVerifyNamespace() (string, error) { r.Namespace = newpath continue } else { - log.Info("Not Changed", r.Namespace, "to", newpath) + // log.Info("Not Changed", r.Namespace, "to", newpath) } log.Info("not sure about", r.Namespace) } -- cgit v1.2.3