From 43b7e8243f5e32e047812df394430e24fba461b6 Mon Sep 17 00:00:00 2001 From: evilsocket Date: Wed, 28 Mar 2018 11:56:56 +0200 Subject: [PATCH] fix: made a warning log as a debug log to avoid causing confusion about MAC lookup of offline addresses --- modules/arp_spoof.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/arp_spoof.go b/modules/arp_spoof.go index c23c2e44..6ef95469 100644 --- a/modules/arp_spoof.go +++ b/modules/arp_spoof.go @@ -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 }