From 560af5e3d88114a3cca35a24ec71bde189ae1899 Mon Sep 17 00:00:00 2001 From: Nicola Baldo Date: Mon, 15 Jun 2015 18:06:54 +0200 Subject: [PATCH] fixed function logs in radio-berarer-stats-connector --- src/lte/helper/radio-bearer-stats-connector.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lte/helper/radio-bearer-stats-connector.cc b/src/lte/helper/radio-bearer-stats-connector.cc index 8b7b5a515..2514db6aa 100644 --- a/src/lte/helper/radio-bearer-stats-connector.cc +++ b/src/lte/helper/radio-bearer-stats-connector.cc @@ -68,7 +68,7 @@ void DlTxPduCallback (Ptr arg, std::string path, uint16_t rnti, uint8_t lcid, uint32_t packetSize) { - NS_LOG_LOGIC (path << rnti << (uint16_t)lcid << packetSize); + NS_LOG_FUNCTION (path << rnti << (uint16_t)lcid << packetSize); arg->stats->DlTxPdu (arg->cellId, arg->imsi, rnti, lcid, packetSize); } @@ -85,7 +85,7 @@ void DlRxPduCallback (Ptr arg, std::string path, uint16_t rnti, uint8_t lcid, uint32_t packetSize, uint64_t delay) { - NS_LOG_LOGIC (path << rnti << (uint16_t)lcid << packetSize << delay); + NS_LOG_FUNCTION (path << rnti << (uint16_t)lcid << packetSize << delay); arg->stats->DlRxPdu (arg->cellId, arg->imsi, rnti, lcid, packetSize, delay); } @@ -101,7 +101,7 @@ void UlTxPduCallback (Ptr arg, std::string path, uint16_t rnti, uint8_t lcid, uint32_t packetSize) { - NS_LOG_LOGIC (path << rnti << (uint16_t)lcid << packetSize); + NS_LOG_FUNCTION (path << rnti << (uint16_t)lcid << packetSize); arg->stats->UlTxPdu (arg->cellId, arg->imsi, rnti, lcid, packetSize); } @@ -119,7 +119,7 @@ void UlRxPduCallback (Ptr arg, std::string path, uint16_t rnti, uint8_t lcid, uint32_t packetSize, uint64_t delay) { - NS_LOG_LOGIC (path << rnti << (uint16_t)lcid << packetSize << delay); + NS_LOG_FUNCTION (path << rnti << (uint16_t)lcid << packetSize << delay); arg->stats->UlRxPdu (arg->cellId, arg->imsi, rnti, lcid, packetSize, delay); }