mirror of
https://github.com/bettercap/bettercap
synced 2025-08-19 13:09:49 -07:00
fix: made a warning log as a debug log to avoid causing confusion about MAC lookup of offline addresses
This commit is contained in:
parent
d9dba33cce
commit
43b7e8243f
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ func (p *ArpSpoofer) sendArp(saddr net.IP, smac net.HardwareAddr, check_running
|
||||||
// do we have this ip mac address?
|
// do we have this ip mac address?
|
||||||
hw, err := findMAC(p.Session, ip, probe)
|
hw, err := findMAC(p.Session, ip, probe)
|
||||||
if err != nil {
|
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
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue