From 390742b3ede56aa05e7fb01f140ec8450f38e2af Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 30 Jun 2017 18:57:02 +0200 Subject: Use osmo_dump_gsmtime to log fn across different layers This commit also fixes a missing end of line in the log output of handle_ph_data_ind Change-Id: I049f58d51333d3590361db5c0105e6899a862af6 --- src/osmo-bts-sysmo/l1_if.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/osmo-bts-sysmo/l1_if.c') diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c index 72d64ead..94fb6792 100644 --- a/src/osmo-bts-sysmo/l1_if.c +++ b/src/osmo-bts-sysmo/l1_if.c @@ -922,6 +922,7 @@ static int handle_ph_data_ind(struct femtol1_hdl *fl1, GsmL1_PhDataInd_t *data_i struct msgb *sap_msg; struct osmo_phsap_prim *l1sap; uint32_t fn; + struct gsm_time g_time; int rc = 0; chan_nr = chan_nr_by_sapi(&trx->ts[data_ind->u8Tn], data_ind->sapi, @@ -937,9 +938,11 @@ static int handle_ph_data_ind(struct femtol1_hdl *fl1, GsmL1_PhDataInd_t *data_i process_meas_res(trx, chan_nr, &data_ind->measParam); - DEBUGP(DL1P, "Rx PH-DATA.ind %s (hL2 %08x): %s", + gsm_fn2gsmtime(&g_time, fn); + + DEBUGP(DL1P, "Rx PH-DATA.ind %s %s (hL2 %08x): %s\n", get_value_string(femtobts_l1sapi_names, data_ind->sapi), - data_ind->hLayer2, + osmo_dump_gsmtime(&g_time), data_ind->hLayer2, osmo_hexdump(data_ind->msgUnitParam.u8Buffer, data_ind->msgUnitParam.u8Size)); dump_meas_res(LOGL_DEBUG, &data_ind->measParam); -- cgit v1.2.3