X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Fmac_stop_ind.c;h=6238dce9b09ef85529815111ef06c1a7810c5632;hb=e54c2aae19e97065def9e5ab2d1488477b1ea209;hp=c1adb7d8fb706bde1195b25f5696b5767890909b;hpb=79b8d410dc34e5624583b9ad935e65350dd3f62a;p=o-du%2Fl2.git diff --git a/src/5gnrmac/mac_stop_ind.c b/src/5gnrmac/mac_stop_ind.c index c1adb7d8f..6238dce9b 100644 --- a/src/5gnrmac/mac_stop_ind.c +++ b/src/5gnrmac/mac_stop_ind.c @@ -53,7 +53,7 @@ uint8_t sendStopIndToDuApp(uint16_t cellId) MAC_ALLOC_SHRABL_BUF(oduCellId, sizeof(OduCellId)); if(!oduCellId) { - DU_LOG("\nMAC : Stop Indication memory allocation failed"); + DU_LOG("\nERROR --> MAC : Stop Indication memory allocation failed"); return RFAILED; } oduCellId->cellId = cellId; @@ -64,7 +64,7 @@ uint8_t sendStopIndToDuApp(uint16_t cellId) ret = MacDuAppStopInd(&pst, oduCellId); if(ret != ROK) { - DU_LOG("\nMAC: Failed to send stop indication to DU APP"); + DU_LOG("\nERROR --> MAC: Failed to send stop indication to DU APP"); MAC_FREE_SHRABL_BUF(MAC_MEM_REGION, MAC_POOL, oduCellId, sizeof(OduCellId)); } return ROK;