diff --git a/src/lte/model/lte-enb-mac.cc b/src/lte/model/lte-enb-mac.cc index 40799edba..63f9bf32b 100644 --- a/src/lte/model/lte-enb-mac.cc +++ b/src/lte/model/lte-enb-mac.cc @@ -531,7 +531,7 @@ LteEnbMac::DoSubframeIndication(uint32_t frameNo, uint32_t subframeNo) { // If rnti = 0, UE context was not created (not enough SRS) // Therefore don't send RAR for this preamble - NS_LOG_INFO("UE Context not created, no RAR is send"); + NS_LOG_INFO("UE context not created, no RAR to send"); continue; } NS_LOG_INFO("preambleId " << (uint32_t)it->first << ": allocated T-C-RNTI " diff --git a/src/lte/model/lte-enb-rrc.cc b/src/lte/model/lte-enb-rrc.cc index 04801a464..e11c1cff3 100644 --- a/src/lte/model/lte-enb-rrc.cc +++ b/src/lte/model/lte-enb-rrc.cc @@ -3123,7 +3123,7 @@ LteEnbRrc::DoAllocateTemporaryCellRnti(uint8_t componentCarrierId) // if no SRS index is available, then do not create a new UE context. if (IsMaxSrsReached()) { - NS_LOG_WARN("Not enough SRS configuration index, UE context not created"); + NS_LOG_WARN("Not enough SRS configuration indices, UE context not created"); return 0; // return 0 since new RNTI was not assigned for the received preamble } return AddUe(UeManager::INITIAL_RANDOM_ACCESS, componentCarrierId);