diff options
| -rw-r--r-- | apt.go | 2 | ||||
| -rw-r--r-- | config.go | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -30,8 +30,6 @@ func (me *Machine) initPackages() { log.Info("added", new1.Name, "failed") } } - - log.Info(me.Hostname, "is", me.Distro, "with", me.Packages.Len(), "packages") } func (me *Machine) addNew(name string, version string) bool { @@ -99,6 +99,7 @@ func (m *Machine) ConfigLoad() error { m.Hostname = hostname m.Distro = detectDistro() m.initPackages() + log.Info("zoopb.ConfigLoad()", m.Hostname, "runs", m.Distro, "with", m.Packages.Len(), "packages") return nil } |
