aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-03-13 18:30:09 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-03-16 14:21:41 +0100
commitb45c8a6b6cf07ddcd60d8e5b53827be4658706f2 (patch)
tree438af422a8e9883ceaa5774f644b312b7a258574
parent2dca8f37e5d44802221abb4d6fd31ec51fb9921a (diff)
sysmobts: Improve the log message and print the hLayer2 we don't know
-rw-r--r--src/osmo-bts-sysmo/l1_if.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c
index 66e07bf1..5a3c826a 100644
--- a/src/osmo-bts-sysmo/l1_if.c
+++ b/src/osmo-bts-sysmo/l1_if.c
@@ -689,7 +689,9 @@ static int handle_ph_data_ind(struct femtol1_hdl *fl1, GsmL1_PhDataInd_t *data_i
lchan = l1if_hLayer_to_lchan(fl1->priv, data_ind->hLayer2);
if (!lchan) {
- LOGP(DL1C, LOGL_ERROR, "unable to resolve lchan by hLayer2\n");
+ LOGP(DL1C, LOGL_ERROR,
+ "unable to resolve lchan by hLayer2 for 0x%x\n",
+ data_ind->hLayer2);
return -ENODEV;
}