aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <alexander.chemeris@gmail.com>2013-10-06 23:35:39 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-08 11:29:44 +0200
commit0c48fc7c62e947f2934f7bfe10f2d01cbc0349c1 (patch)
treebbbfc3ec824f29bd674144d841733b60a2e7c1a0
parentcaa98d51b64e16bbe6d4933d9052b617432e5e22 (diff)
abis: Consistent usage of LOGP/DEBUGP for "RSL CONNECT NACK"
-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 ee1fc9c98..717f56d8d 100644
--- a/openbsc/src/libbsc/abis_nm.c
+++ b/openbsc/src/libbsc/abis_nm.c
@@ -2436,10 +2436,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");