From 57595f5147c89fc5f2b4df6267cd86a7defd0e34 Mon Sep 17 00:00:00 2001 From: Nicola Baldo Date: Fri, 27 Jan 2012 18:06:23 +0100 Subject: [PATCH] proper use of log macros in lte-enb-mac.cc --- src/lte/model/lte-enb-mac.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/lte/model/lte-enb-mac.cc b/src/lte/model/lte-enb-mac.cc index 0dd9e30f1..87ecd6d38 100644 --- a/src/lte/model/lte-enb-mac.cc +++ b/src/lte/model/lte-enb-mac.cc @@ -480,7 +480,7 @@ LteEnbMac::DoReceiveIdealControlMessage (Ptr msg) } else { - NS_LOG_FUNCTION (this << " IdealControlMessage not recognized"); + NS_LOG_LOGIC (this << " IdealControlMessage not recognized"); } } @@ -501,10 +501,9 @@ void LteEnbMac::ReceiveDlCqiIdealControlMessage (Ptr 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 @@ LteEnbMac::DoSchedDlConfigInd (FfMacSchedSapUser::SchedDlConfigIndParameters ind void LteEnbMac::DoSchedUlConfigInd (FfMacSchedSapUser::SchedUlConfigIndParameters ind) { - NS_LOG_FUNCTION (this); for (unsigned int i = 0; i < ind.m_dciList.size (); i++)