aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-10-09 20:14:13 +0200
committerlaforge <laforge@osmocom.org>2020-10-15 05:55:36 +0000
commit7c02e4cfd5d664ff8491f3f42107440642b80af5 (patch)
tree310cc33133a10981238061399f211e2c84e85230
parent558183f3dc7d4f17b937f978db1b1cab8da040da (diff)
abis_nm: Log Opstart NACK with error loglevel
-rw-r--r--src/osmo-bsc/abis_nm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c
index 6e31a8523..e2c328374 100644
--- a/src/osmo-bsc/abis_nm.c
+++ b/src/osmo-bsc/abis_nm.c
@@ -829,7 +829,7 @@ static int abis_nm_rx_opstart_ack(struct msgb *mb)
static int abis_nm_rx_opstart_nack(struct msgb *mb)
{
struct abis_om_fom_hdr *foh = msgb_l3(mb);
- DEBUGPFOH(DNM, foh, "Opstart NACK\n");
+ LOGPFOH(DNM, LOGL_ERROR, foh, "Opstart NACK\n");
osmo_signal_dispatch(SS_NM, S_NM_OPSTART_NACK, mb);
return 0;
}