aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-05-30 13:00:09 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-05-30 13:08:04 +0200
commit98fda0e38bbbc70d95900c10ed438ad32b4a6d89 (patch)
tree3ada6a4f5cc7039506b88090afad5e037825829d /openbsc/src
parentd05d05b2773a1dc96a51104034942d504f2b1166 (diff)
abis_rsl: rsl_rx_chan_rqd: Format bts log string as in everywhere else
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/libbsc/abis_rsl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/libbsc/abis_rsl.c b/openbsc/src/libbsc/abis_rsl.c
index f05344a05..5a508b207 100644
--- a/openbsc/src/libbsc/abis_rsl.c
+++ b/openbsc/src/libbsc/abis_rsl.c
@@ -1842,7 +1842,7 @@ static int rsl_rx_chan_rqd(struct msgb *msg)
/* Determine channel request cause code */
chreq_reason = get_reason_by_chreq(rqd_ref->ra, bts->network->neci);
- LOGP(DRSL, LOGL_NOTICE, "BTS %d CHAN RQD: reason: %s (ra=0x%02x, neci=0x%02x, chreq_reason=0x%02x)\n",
+ LOGP(DRSL, LOGL_NOTICE, "(bts=%d) CHAN RQD: reason: %s (ra=0x%02x, neci=0x%02x, chreq_reason=0x%02x)\n",
msg->lchan->ts->trx->bts->nr,
get_value_string(gsm_chreq_descs, chreq_reason),
rqd_ref->ra, bts->network->neci, chreq_reason);
@@ -1867,7 +1867,7 @@ static int rsl_rx_chan_rqd(struct msgb *msg)
lchan = lchan_alloc(bts, lctype, is_lu);
if (!lchan) {
uint8_t wait_ind;
- LOGP(DRSL, LOGL_NOTICE, "BTS %d CHAN RQD: no resources for %s 0x%x\n",
+ LOGP(DRSL, LOGL_NOTICE, "(bts=%d) CHAN RQD: no resources for %s 0x%x\n",
msg->lchan->ts->trx->bts->nr, gsm_lchant_name(lctype), rqd_ref->ra);
rate_ctr_inc(&bts->network->bsc_ctrs->ctr[BSC_CTR_CHREQ_NO_CHANNEL]);
if (bts->T3122)