src/network/utils/radiotap-header.cc
changeset 9144 6a15c50388bc
parent 9063 32755d0516f4
child 9157 2d4305dd159a
--- a/src/network/utils/radiotap-header.cc	Fri Nov 16 22:23:40 2012 +0100
+++ b/src/network/utils/radiotap-header.cc	Fri Nov 16 22:27:18 2012 +0100
@@ -55,7 +55,6 @@
 TypeId 
 RadiotapHeader::GetInstanceTypeId (void) const
 {
-  NS_LOG_FUNCTION (this);
   return GetTypeId ();
 }
 
@@ -69,7 +68,7 @@
 void
 RadiotapHeader::Serialize (Buffer::Iterator start) const
 {
-  NS_LOG_FUNCTION (this);
+  NS_LOG_FUNCTION (this << &start);
 
   start.WriteU8 (0); // major version of radiotap header
   start.WriteU8 (0); // pad field
@@ -132,7 +131,7 @@
 uint32_t
 RadiotapHeader::Deserialize (Buffer::Iterator start)
 {
-  NS_LOG_FUNCTION (this);
+  NS_LOG_FUNCTION (this << &start);
 
   uint8_t tmp = start.ReadU8 (); // major version of radiotap header
   NS_ASSERT_MSG (tmp == 0x00, "RadiotapHeader::Deserialize(): Unexpected major version");
@@ -217,7 +216,7 @@
 void
 RadiotapHeader::Print (std::ostream &os) const
 {
-  NS_LOG_FUNCTION (this);
+  NS_LOG_FUNCTION (this << &os);
   os << " tsft=" << m_tsft
      << " flags=" << std::hex << m_flags << std::dec
      << " rate=" << (uint16_t) m_rate