diff options
Diffstat (limited to 'wit.go')
| -rw-r--r-- | wit.go | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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) } } |
