diff --git a/RELEASE_NOTES b/RELEASE_NOTES index cb69ea8c2..e65afb9c2 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -106,6 +106,7 @@ Bugs fixed - Bug 2500 - Ipv[4,6]RawSocket ignores IpTtl tag - Bug 2507 - ConfigStore RawTextConfigLoad doesn't reset stream error state - Bug 2508 - Duplicate of bug 2507 +- No BugId - Arp logging: label with request or reply properly Known issues ------------ diff --git a/src/internet/model/arp-l3-protocol.cc b/src/internet/model/arp-l3-protocol.cc index 4217b2b77..e434d3464 100644 --- a/src/internet/model/arp-l3-protocol.cc +++ b/src/internet/model/arp-l3-protocol.cc @@ -186,10 +186,13 @@ ArpL3Protocol::Receive (Ptr device, Ptr p, uint16_t pro NS_LOG_LOGIC ("ARP: Cannot remove ARP header"); return; } - NS_LOG_LOGIC ("ARP: received "<< (arp.IsRequest () ? "request" : "reply") << - " node="<GetId ()<<", got request from " << - arp.GetSourceIpv4Address () << " for address " << - arp.GetDestinationIpv4Address () << "; we have addresses: "); + NS_LOG_LOGIC ("ARP: received " << (arp.IsRequest () ? "request" : "reply") << + " node=" << m_node->GetId () << + ", got " << + (arp.IsRequest () ? "request" : "reply") << + " from " << arp.GetSourceIpv4Address () << + " for address " << arp.GetDestinationIpv4Address () << + "; we have addresses: "); for (uint32_t i = 0; i < cache->GetInterface ()->GetNAddresses (); i++) { NS_LOG_LOGIC (cache->GetInterface ()->GetAddress (i).GetLocal () << ", ");