aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <Alexander.Chemeris@gmail.com>2013-10-06 23:34:17 +0200
committerAlexander Chemeris <Alexander.Chemeris@gmail.com>2013-10-06 23:37:05 +0200
commitcf7766763017920227e59d1174a46f082a52fa7d (patch)
tree9e6e4ce48b18fbf4a733c18cdbde0447f45152d4
parentd08c440596b5faf6e2bec23149680a5eaa4963a6 (diff)
abis: Consistent usage of LOGP/DEBUGP at the "RSL CONNECT NACK" log output.
-rw-r--r--openbsc/src/libbsc/abis_nm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/libbsc/abis_nm.c b/openbsc/src/libbsc/abis_nm.c
index a2e9f0d5d..62176b75f 100644
--- a/openbsc/src/libbsc/abis_nm.c
+++ b/openbsc/src/libbsc/abis_nm.c
@@ -2438,10 +2438,10 @@ static int abis_nm_rx_ipacc(struct msgb *msg)
case NM_MT_IPACC_RSL_CONNECT_NACK:
LOGP(DNM, LOGL_ERROR, "RSL CONNECT NACK ");
if (TLVP_PRESENT(&tp, NM_ATT_NACK_CAUSES))
- DEBUGPC(DNM, " CAUSE=%s\n",
+ LOGPC(DNM, LOGL_ERROR, " CAUSE=%s\n",
abis_nm_nack_cause_name(*TLVP_VAL(&tp, NM_ATT_NACK_CAUSES)));
else
- DEBUGPC(DNM, "\n");
+ LOGPC(DNM, LOGL_ERROR, "\n");
break;
case NM_MT_IPACC_SET_NVATTR_ACK:
DEBUGPC(DNM, "SET NVATTR ACK\n");