aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/oml.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-01-13 00:46:43 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-01-14 21:47:41 +0100
commit62579c7a34474eda1be954e2f2bbdaf389d7bc96 (patch)
tree258a9048db35b75339753217ddf852812bc0cbc5 /src/osmo-bts-sysmo/oml.c
parent4cd68dc4d772e367851a5d26dcc558fec8fd0e7b (diff)
oml: Mention the SAPI that is activated in the log message
I was wondering why the channel was activated twice but it needs to be activated for each SAPI.
Diffstat (limited to 'src/osmo-bts-sysmo/oml.c')
-rw-r--r--src/osmo-bts-sysmo/oml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-sysmo/oml.c b/src/osmo-bts-sysmo/oml.c
index b80a1d9f..20418029 100644
--- a/src/osmo-bts-sysmo/oml.c
+++ b/src/osmo-bts-sysmo/oml.c
@@ -610,8 +610,8 @@ int lchan_activate(struct gsm_lchan *lchan)
break;
}
- LOGP(DL1C, LOGL_INFO, "%s MPH-ACTIVATE.req (hL2=0x%08x)\n",
- gsm_lchan_name(lchan), act_req->hLayer2);
+ LOGP(DL1C, LOGL_INFO, "%s MPH-ACTIVATE.req (hL2=0x%08x, SAPI=%d)\n",
+ gsm_lchan_name(lchan), act_req->hLayer2, i);
/* send the primitive for all GsmL1_Sapi_* that match the LCHAN */
l1if_req_compl(fl1h, msg, 0, lchan_act_compl_cb, lchan);