fix: made a warning log as a debug log to avoid causing confusion about MAC lookup of offline addresses

This commit is contained in:
evilsocket 2018-03-28 11:56:56 +02:00
commit 43b7e8243f
No known key found for this signature in database
GPG key ID: 1564D7F30393A456

View file

@ -166,7 +166,7 @@ func (p *ArpSpoofer) sendArp(saddr net.IP, smac net.HardwareAddr, check_running
// do we have this ip mac address?
hw, err := findMAC(p.Session, ip, probe)
if err != nil {
log.Warning("Could not find hardware address for %s, retrying in one second.", ip.String())
log.Debug("Could not find hardware address for %s, retrying in one second.", ip.String())
continue
}