From e08007d834ae3aef4c0b1f54a6b57830ffb9b675 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 5 Oct 2025 13:25:12 -0500 Subject: rm debugging output --- Makefile | 1 + wit.go | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2413c56..01814e5 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,7 @@ redomod: clean: rm -f *.pb.go -rm -f go.* + go-mod-clean purge package.pb.go: package.proto autogenpb --proto package.proto diff --git a/wit.go b/wit.go index ebc3fc5..124404f 100644 --- a/wit.go +++ b/wit.go @@ -6,7 +6,6 @@ import ( "strings" "go.wit.com/lib/fhelp" - "go.wit.com/log" ) func (m *Machine) IsInstalled(name string) bool { @@ -127,11 +126,11 @@ func (all *Packages) AddIfNewer(p *Package) { return } if v1.LessThan(v2) { - log.Info("removing", v1, "using", v2) + // log.Info("removing", v1, "using", v2) all.Delete(check) all.Append(p) } else { - log.Info("keeping", v1, "got:", v2) + // log.Info("keeping", v1, "got:", v2) } } -- cgit v1.2.3