Commit ba10db14 authored by Robert Schmidt's avatar Robert Schmidt

Logs when UE cannot use CCCH

parent 2335f5b6
...@@ -444,7 +444,7 @@ static int nr_process_mac_pdu(instance_t module_idP, ...@@ -444,7 +444,7 @@ static int nr_process_mac_pdu(instance_t module_idP,
mac_len = 6; mac_len = 6;
} }
LOG_D(MAC, "[RAPROC] Received SDU for CCCH length %d for UE %04x\n", mac_len, UE->rnti); LOG_I(MAC, "[RAPROC] Received SDU for CCCH length %d for UE %04x\n", mac_len, UE->rnti);
if (prepare_initial_ul_rrc_message(RC.nrmac[module_idP], UE)) { if (prepare_initial_ul_rrc_message(RC.nrmac[module_idP], UE)) {
mac_rlc_data_ind(module_idP, mac_rlc_data_ind(module_idP,
...@@ -458,6 +458,8 @@ static int nr_process_mac_pdu(instance_t module_idP, ...@@ -458,6 +458,8 @@ static int nr_process_mac_pdu(instance_t module_idP,
mac_len, mac_len,
1, 1,
NULL); NULL);
} else {
LOG_E(NR_MAC, "prepare_initial_ul_rrc_message() returned false, cannot forward CCCH message\n");
} }
break; break;
......
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