From 58e01af8657524c687ac864744738e98981e2271 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Wed, 26 Jun 2019 17:08:17 +0200 Subject: bsc_subscr_conn_fsm: Log Tx of BSSMAP Clear Request with cause Change-Id: Ief0ec314723ce1d23da334df2add73c36ebf19f3 --- src/osmo-bsc/bsc_subscr_conn_fsm.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/osmo-bsc') diff --git a/src/osmo-bsc/bsc_subscr_conn_fsm.c b/src/osmo-bsc/bsc_subscr_conn_fsm.c index 0830deece..bc5cb27fa 100644 --- a/src/osmo-bsc/bsc_subscr_conn_fsm.c +++ b/src/osmo-bsc/bsc_subscr_conn_fsm.c @@ -133,8 +133,12 @@ int gscon_sigtran_send(struct gsm_subscriber_connection *conn, struct msgb *msg) static void gscon_bssmap_clear(struct gsm_subscriber_connection *conn, enum gsm0808_cause cause) { - struct msgb *resp = gsm0808_create_clear_rqst(cause); + + struct msgb *resp; int rc; + + LOGPFSML(conn->fi, LOGL_DEBUG, "Tx BSSMAP CLEAR REQUEST(%s) to MSC\n", gsm0808_cause_name(cause)); + resp = gsm0808_create_clear_rqst(cause); if (!resp) { LOGPFSML(conn->fi, LOGL_ERROR, "Unable to compose BSSMAP Clear Request message\n"); return; -- cgit v1.2.3