aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-17 17:57:31 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-18 15:57:42 +0100
commit3d0a500f2d184884ead6064b4852000f3317266f (patch)
treee7cae4700aeeb98c512c069bf8897d77cae83bc9 /openbsc
parenta5c9cea22c5e901081769f98380291bd078d6626 (diff)
iu.c: log conn_id on outgoing messages
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/libiu/iu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/src/libiu/iu.c b/openbsc/src/libiu/iu.c
index a0d79793e..beeb761b1 100644
--- a/openbsc/src/libiu/iu.c
+++ b/openbsc/src/libiu/iu.c
@@ -213,7 +213,8 @@ int iu_tx(struct msgb *msg, uint8_t sapi)
struct ue_conn_ctx *uectx = msg->dst;
struct osmo_scu_prim *prim;
- LOGP(DRANAP, LOGL_INFO, "Transmitting L3 Message as RANAP DT\n");
+ LOGP(DRANAP, LOGL_INFO, "Transmitting L3 Message as RANAP DT (SUA link %p conn_id %u)\n",
+ uectx->link, uectx->conn_id);
msg = ranap_new_msg_dt(sapi, msg->data, msgb_length(msg));
msg->l2h = msg->data;