aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-05-16 19:28:15 +0700
committerlaforge <laforge@osmocom.org>2020-05-16 20:13:00 +0000
commitd3d03070e280b0f0dc9f78914afcd20e7edcfdb7 (patch)
treee1b5099c549b349e8d86577a6a42bfad891e23e2
parent62766a595d7d51f20a7de6fd2aa8686535101881 (diff)
A-bis: fix logging level mismatch in abis_nm_rcvmsg_fom()
-rw-r--r--src/osmo-bsc/abis_nm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c
index 32e9a8faf..4ed060295 100644
--- a/src/osmo-bsc/abis_nm.c
+++ b/src/osmo-bsc/abis_nm.c
@@ -901,10 +901,10 @@ static int abis_nm_rcvmsg_fom(struct msgb *mb)
abis_nm_tlv_parse(&tp, bts, foh->data, oh->length-sizeof(*foh));
if (TLVP_PRESENT(&tp, NM_ATT_NACK_CAUSES))
- DEBUGPC(DNM, "CAUSE=%s\n",
+ LOGPC(DNM, LOGL_NOTICE, "CAUSE=%s\n",
abis_nm_nack_cause_name(*TLVP_VAL(&tp, NM_ATT_NACK_CAUSES)));
else
- DEBUGPC(DNM, "\n");
+ LOGPC(DNM, LOGL_NOTICE, "\n");
nack_data.msg = mb;
nack_data.mt = mt;