Skip to content

Commit

Permalink
Remove debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
josephrhobbs committed Aug 1, 2024
1 parent 71dd766 commit 708b965
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion proton_arp/src/arp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ impl ArpManager {
/// An `Option<Ipv4Addr>` containing to the provided MAC address, if available.
pub fn lookup_mac(&self, mac: MacAddr) -> Option<Ipv4Addr> {
for entry in self.cache() {
println!("{} == {} ?", entry.mac, mac);
if entry.mac == mac {
return Some (entry.ipv4);
}
Expand Down

0 comments on commit 708b965

Please sign in to comment.