Add useful log lines

- Add a LOG_I to 'nr_sdap_add_entity' to inform the user
  a SDAP entity is being created
- Add LOG_W to `nr_sdap_get_entity` to warn about
  empty SDAP entity list

Signed-off-by: Guido Casati <guido.casati@openairinterface.org>
This commit is contained in:
Guido Casati
2026-04-15 17:37:51 +02:00
parent ddccd57e5c
commit 294599d327
2 changed files with 9 additions and 1 deletions

View File

@@ -2283,6 +2283,11 @@ void *nas_nrue(void *args_p)
}
fgs_nas_msg_t msg_type = get_msg_type(ba.buf, ba.len);
LOG_D(NAS,
"[UE %ld] NAS_CONN_ESTABLI_CNF decoded NAS msg_type=%s (%d)\n",
nas->UE_id,
print_info(msg_type, message_text_info, sizeofArray(message_text_info)),
msg_type);
if (msg_type == FGS_REGISTRATION_ACCEPT) {
handle_registration_accept(nas, ba.buf, ba.len);
} else if (msg_type == FGS_PDU_SESSION_ESTABLISHMENT_ACC) {