Commit 96b5525d authored by Andrew Burger's avatar Andrew Burger

removal of LOG_A messages

parent 465f1a77
...@@ -2603,7 +2603,7 @@ ue_scheduler(const module_id_t module_idP, ...@@ -2603,7 +2603,7 @@ ue_scheduler(const module_id_t module_idP,
if(NFAPI_MODE==NFAPI_UE_STUB_PNF || NFAPI_MODE==NFAPI_MODE_STANDALONE_PNF) { // phy_stub mode if(NFAPI_MODE==NFAPI_UE_STUB_PNF || NFAPI_MODE==NFAPI_MODE_STANDALONE_PNF) { // phy_stub mode
// Modification for phy_stub mode operation here. We only need to make sure that the ue_mode is back to // Modification for phy_stub mode operation here. We only need to make sure that the ue_mode is back to
// PRACH state. // PRACH state.
LOG_A(MAC, "nfapi_mode3: Setting UE_mode to PRACH 2 \n"); LOG_I(MAC, "nfapi_mode3: Setting UE_mode to PRACH 2 \n");
UE_mac_inst[module_idP].UE_mode[eNB_indexP] = PRACH; UE_mac_inst[module_idP].UE_mode[eNB_indexP] = PRACH;
//ra_failed(module_idP,CC_id,eNB_index);UE_mac_inst[module_idP].RA_contention_resolution_timer_active = 0; //ra_failed(module_idP,CC_id,eNB_index);UE_mac_inst[module_idP].RA_contention_resolution_timer_active = 0;
} else { } else {
......
...@@ -948,7 +948,7 @@ int memcpy_dl_config_req(L1_rxtx_proc_t *proc, ...@@ -948,7 +948,7 @@ int memcpy_dl_config_req(L1_rxtx_proc_t *proc,
req->dl_config_request_body.dl_config_pdu_list[i]; req->dl_config_request_body.dl_config_pdu_list[i];
} }
LOG_A(MAC, "dl_config_req in memcpy Frame: %d Subframe: %d\n", LOG_I(MAC, "dl_config_req in memcpy Frame: %d Subframe: %d\n",
p->sfn_sf >> 4, p->sfn_sf & 15); p->sfn_sf >> 4, p->sfn_sf & 15);
if (!put_queue(&dl_config_req_queue, p)) { if (!put_queue(&dl_config_req_queue, p)) {
...@@ -1217,7 +1217,7 @@ void *ue_standalone_pnf_task(void *context) ...@@ -1217,7 +1217,7 @@ void *ue_standalone_pnf_task(void *context)
} }
else else
{ {
LOG_A(MAC, "dl_config_req fresh off socket Frame: %d Subframe: %d\n", LOG_I(MAC, "dl_config_req fresh off socket Frame: %d Subframe: %d\n",
dl_config_req.sfn_sf >> 4, dl_config_req.sfn_sf & 15); dl_config_req.sfn_sf >> 4, dl_config_req.sfn_sf & 15);
// check to see if dl_config_req is null // check to see if dl_config_req is null
memcpy_dl_config_req(NULL, NULL, &dl_config_req); memcpy_dl_config_req(NULL, NULL, &dl_config_req);
......
...@@ -1057,7 +1057,7 @@ static void *UE_phy_stub_standalone_pnf_task(void *arg) ...@@ -1057,7 +1057,7 @@ static void *UE_phy_stub_standalone_pnf_task(void *arg)
NFAPI_SFNSF2SFN(sfn_sf), NFAPI_SFNSF2SF(sfn_sf)); NFAPI_SFNSF2SFN(sfn_sf), NFAPI_SFNSF2SF(sfn_sf));
if (dl_config_req != NULL) { if (dl_config_req != NULL) {
uint16_t dl_num_pdus = dl_config_req->dl_config_request_body.number_pdu; uint16_t dl_num_pdus = dl_config_req->dl_config_request_body.number_pdu;
LOG_A(MAC, "(OAI UE) Received dl_config_req from proxy at Frame: %d, Subframe: %d," LOG_I(MAC, "(OAI UE) Received dl_config_req from proxy at Frame: %d, Subframe: %d,"
" with number of PDUs: %u\n", " with number of PDUs: %u\n",
NFAPI_SFNSF2SFN(dl_config_req->sfn_sf), NFAPI_SFNSF2SF(dl_config_req->sfn_sf), NFAPI_SFNSF2SFN(dl_config_req->sfn_sf), NFAPI_SFNSF2SF(dl_config_req->sfn_sf),
dl_num_pdus); dl_num_pdus);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment