From f83b6c7ab174fdd99cd8107302e0dead32fa3bb5 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Sun, 25 May 2008 14:43:41 -0700 Subject: [PATCH] more logging. Make sure we invoke parent's Dispose method --- src/internet-node/arp-ipv4-interface.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/internet-node/arp-ipv4-interface.cc b/src/internet-node/arp-ipv4-interface.cc index e8be25ea1..457079bd4 100644 --- a/src/internet-node/arp-ipv4-interface.cc +++ b/src/internet-node/arp-ipv4-interface.cc @@ -53,20 +53,22 @@ ArpIpv4Interface::ArpIpv4Interface () : m_node (0), m_device (0) { - NS_LOG_FUNCTION_NOARGS (); + NS_LOG_FUNCTION (this); } ArpIpv4Interface::~ArpIpv4Interface () { - NS_LOG_FUNCTION_NOARGS (); + NS_LOG_FUNCTION (this); } void ArpIpv4Interface::DoDispose (void) { + NS_LOG_FUNCTION (this); m_node = 0; m_device = 0; m_cache = 0; + Ipv4Interface::DoDispose (); } void