Remove spurious cout logs from Icmpv6L4Protocol
authorTommaso Pecorella <tommaso.pecorella@unifi.it>
Thu, 13 Nov 2014 23:34:10 +0100
changeset 11061 dc318c5a42de
parent 11060 1f6b901f3071
child 11062 91a7bee99048
Remove spurious cout logs from Icmpv6L4Protocol
src/internet/model/icmpv6-l4-protocol.cc
--- a/src/internet/model/icmpv6-l4-protocol.cc	Wed Nov 12 10:40:02 2014 -0800
+++ b/src/internet/model/icmpv6-l4-protocol.cc	Thu Nov 13 23:34:10 2014 +0100
@@ -1003,8 +1003,6 @@
   else
     {
       NS_LOG_LOGIC ("Destination is Multicast, using DelayedSendMessage");
-      std::cout << Simulator::Now ().GetSeconds () << " - " << this << " - " << m_node->GetId () << " - ";
-      std::cout << src << " -> " << dst << " - " << *p << std::endl;
       Simulator::Schedule (Time (MilliSeconds (m_solicitationJitter->GetValue ())), &Icmpv6L4Protocol::DelayedSendMessage, this, p, src, dst, 255);
     }
 }