summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-05 13:25:12 -0500
committerJeff Carr <[email protected]>2025-10-05 13:25:12 -0500
commite08007d834ae3aef4c0b1f54a6b57830ffb9b675 (patch)
tree13cfeea43abd16ce9feed2a57bc89fb3b113f400
parent0fd8346eddc8e8e1b99f631baff8f3ac3f76c616 (diff)
rm debugging outputv0.0.73
-rw-r--r--Makefile1
-rw-r--r--wit.go5
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)
}
}