proper use of log macros in lte-enb-mac.cc
authorNicola Baldo <nbaldo@cttc.es>
Fri, 27 Jan 2012 18:06:23 +0100
changeset 8598 9e2444c2da44
parent 8597 4505da622d92
child 8599 9e63da130464
proper use of log macros in lte-enb-mac.cc
src/lte/model/lte-enb-mac.cc
--- a/src/lte/model/lte-enb-mac.cc	Fri Jan 27 18:00:35 2012 +0100
+++ b/src/lte/model/lte-enb-mac.cc	Fri Jan 27 18:06:23 2012 +0100
@@ -480,7 +480,7 @@
     }
   else
     {
-      NS_LOG_FUNCTION (this << " IdealControlMessage not recognized");
+      NS_LOG_LOGIC (this << " IdealControlMessage not recognized");
     }
 }
 
@@ -501,10 +501,9 @@
 LteEnbMac::ReceiveDlCqiIdealControlMessage  (Ptr<DlCqiIdealControlMessage> msg)
 {
   NS_LOG_FUNCTION (this << msg);
-  // NS_LOG_FUNCTION (this << msg->GetSourceDevice () << msg->GetDestinationDevice ());
 
   CqiListElement_s dlcqi = msg->GetDlCqi ();
-  NS_LOG_FUNCTION (this << "Enb Received DL-CQI rnti" << dlcqi.m_rnti);
+  NS_LOG_LOGIC (this << "Enb Received DL-CQI rnti" << dlcqi.m_rnti);
   m_dlCqiReceived.push_back (dlcqi);
 
 }
@@ -753,7 +752,6 @@
 void
 LteEnbMac::DoSchedUlConfigInd (FfMacSchedSapUser::SchedUlConfigIndParameters ind)
 {
-
   NS_LOG_FUNCTION (this);
 
   for (unsigned int i = 0; i < ind.m_dciList.size (); i++)