pcu_sock: print SAPI and msg_id when sending confirmation

At the moment we do not print the SAPI, nor the msg_id when we send a
confirmation back to the PCU

Change-Id: Ibd5b4225e597b69eaabaeee437fb637943a55602
elated: OS#5927
This commit is contained in:
Philipp Maier 2023-08-29 15:31:45 +02:00
parent f20e13d160
commit d2d938c261
1 changed files with 2 additions and 1 deletions

View File

@ -628,7 +628,8 @@ int pcu_tx_data_cnf(uint32_t msg_id, uint8_t sapi)
/* FIXME: allow multiple BTS */
bts = llist_entry(g_bts_sm->bts_list.next, struct gsm_bts, list);
LOGP(DPCU, LOGL_DEBUG, "Sending PCH confirm\n");
LOGP(DPCU, LOGL_DEBUG, "Sending DATA.cnf: sapi=%s msg_id=%08x\n",
sapi_string[sapi], msg_id);
msg = pcu_msgb_alloc(PCU_IF_MSG_DATA_CNF_2, bts->nr);
if (!msg)