aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-09-30 12:43:43 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2020-09-30 12:44:33 +0200
commitd2313548e754a0a20c635dd3196ac262749d6368 (patch)
treeba064643231841946e6e70fcde28b054222e6f2f
parentf6809382798b2fbc0b9c2f8a8ec6e023539726b8 (diff)
abis_nm: Log Rx Change Administrative State ACK
-rw-r--r--src/osmo-bsc/abis_nm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c
index 469113750..9213aaaf2 100644
--- a/src/osmo-bsc/abis_nm.c
+++ b/src/osmo-bsc/abis_nm.c
@@ -759,6 +759,9 @@ static int abis_nm_rx_chg_adm_state_ack(struct msgb *mb)
adm_state = *TLVP_VAL(&tp, NM_ATT_ADM_STATE);
+ DEBUGPFOH(DNM, foh, "Rx Change Administrative State ACK %s\n",
+ get_value_string(abis_nm_adm_state_names, adm_state));
+
return update_admstate(sign_link->trx->bts, foh->obj_class, &foh->obj_inst, adm_state);
}