diff options
Diffstat (limited to 'machine.go')
| -rw-r--r-- | machine.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,11 +13,11 @@ func updateMachine(u *zoopb.Machine) string { } m := me.machines.FindByName(u.Hostname) if m == nil { - log.Info("did not find", u.Hostname) + log.Info("adding new machine", u.Hostname) me.machines.Append(u) return "new" } - log.Info("updating machine", m.Hostname) + // log.Info("updating machine", m.Hostname) // did the # of cpus change? if m.Cpus != u.Cpus { |
