aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-06-16 17:46:38 +0200
committerHarald Welte <laforge@gnumonks.org>2016-06-17 15:50:48 +0000
commit274d29bedd66fb246b614238c9ff36db15f18c5f (patch)
tree24baaaf03c2e3e7c54f3343b8ccdefe6e80b4bf9 /src
parent7efc2f3c5bc91cc929433276bca0f5a43a3446db (diff)
debug log: log TS pchan type on connect
A whitespace error is fixed along the way. Change-Id: Iff373ba934937435a175ed3a5d9cfb6f2514735d
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-sysmo/oml.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/osmo-bts-sysmo/oml.c b/src/osmo-bts-sysmo/oml.c
index 559c6a51..0700561c 100644
--- a/src/osmo-bts-sysmo/oml.c
+++ b/src/osmo-bts-sysmo/oml.c
@@ -493,7 +493,11 @@ static int ts_connect_as(struct gsm_bts_trx_ts *ts,
l1p_handle_for_ts(ts));
cr->u8Tn = ts->nr;
cr->logChComb = pchan_to_logChComb[pchan];
-
+
+ DEBUGP(DL1C, "%s pchan=%s ts_connect_as(%s) logChComb=%d\n",
+ gsm_lchan_name(ts->lchan), gsm_pchan_name(ts->pchan),
+ gsm_pchan_name(pchan), cr->logChComb);
+
return l1if_gsm_req_compl(fl1h, msg, cb, NULL);
}