aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-10-18 20:19:50 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-10-30 18:28:27 +0000
commit87c00564805d9f55f168831cd52cf3f869d70637 (patch)
treeb33b0cc605134fe33758af7f02a44f0158e06c03
parentae9beda1506ab06d898a4ec26bfd53d8fc211614 (diff)
info log: iu: add line break to and tweak rx RAB Ass Resp log
-rw-r--r--openbsc/src/libiu/iu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/openbsc/src/libiu/iu.c b/openbsc/src/libiu/iu.c
index 837385ebe..87a02d8e3 100644
--- a/openbsc/src/libiu/iu.c
+++ b/openbsc/src/libiu/iu.c
@@ -411,7 +411,8 @@ static int ranap_handle_co_rab_ass_resp(struct ue_conn_ctx *ctx, RANAP_RAB_Assig
{
int rc = -1;
- LOGP(DRANAP, LOGL_INFO, "RAB Asignment Response:");
+ LOGP(DRANAP, LOGL_INFO,
+ "Rx RAB Assignment Response for UE conn_id %u\n", ctx->conn_id);
if (ies->presenceMask & RAB_ASSIGNMENTRESPONSEIES_RANAP_RAB_SETUPORMODIFIEDLIST_PRESENT) {
/* TODO: Iterate over list of SetupOrModifiedList IEs and handle each one */
RANAP_IE_t *ranap_ie = ies->raB_SetupOrModifiedList.raB_SetupOrModifiedList_ies.list.array[0];
@@ -428,8 +429,6 @@ static int ranap_handle_co_rab_ass_resp(struct ue_conn_ctx *ctx, RANAP_RAB_Assig
ranap_free_rab_setupormodifieditemies(&setup_ies);
}
- LOGPC(DRANAP, LOGL_INFO, "\n");
-
return rc;
}