Merge: * use debug log level for unimportant messages

* commit '5cc8513322a3e604ae31d2c15ca7902608dfbfb8':
  * use debug log level for unimportant messages
This commit is contained in:
Simon Zolin 2019-10-16 12:48:08 +03:00
commit c6b4e269ed
1 changed files with 8 additions and 3 deletions

View File

@ -376,7 +376,7 @@ func (clients *clientsContainer) addFromHostsFile() {
}
}
log.Info("Added %d client aliases from %s", n, hostsFn)
log.Debug("Added %d client aliases from %s", n, hostsFn)
}
// Add IP -> Host pairs from the system's `arp -a` command output
@ -422,18 +422,23 @@ func (clients *clientsContainer) addFromSystemARP() {
}
}
log.Info("Added %d client aliases from 'arp -a' command output", n)
log.Debug("Added %d client aliases from 'arp -a' command output", n)
}
// add clients from DHCP that have non-empty Hostname property
func (clients *clientsContainer) addFromDHCP() {
leases := config.dhcpServer.Leases()
n := 0
for _, l := range leases {
if len(l.Hostname) == 0 {
continue
}
_, _ = config.clients.AddHost(l.IP.String(), l.Hostname, ClientSourceDHCP)
ok, _ := config.clients.AddHost(l.IP.String(), l.Hostname, ClientSourceDHCP)
if ok {
n++
}
}
log.Debug("Added %d client aliases from DHCP", n)
}
type clientHostJSON struct {