enb,rrc: fix logging text

This commit is contained in:
Andre Puschmann 2021-05-28 10:47:51 +02:00
parent 8322887135
commit fcba67ca84
1 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ void rrc::set_radiolink_dl_state(uint16_t rnti, bool crc_res)
rrc_pdu p = {rnti, LCID_RADLINK_DL, crc_res, nullptr};
if (not rx_pdu_queue.try_push(std::move(p))) {
logger.error("Failed to push UE activity command to RRC queue");
logger.error("Failed to push radio link DL state");
}
}
@ -147,7 +147,7 @@ void rrc::set_radiolink_ul_state(uint16_t rnti, bool crc_res)
rrc_pdu p = {rnti, LCID_RADLINK_UL, crc_res, nullptr};
if (not rx_pdu_queue.try_push(std::move(p))) {
logger.error("Failed to push UE activity command to RRC queue");
logger.error("Failed to push radio link UL state");
}
}