aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-08-09 21:53:20 +0200
committerHarald Welte <laforge@gnumonks.org>2011-08-09 22:06:08 +0200
commite5215b539845b8058de129df8724045723b883b0 (patch)
tree667dda0693daa7a0ba73a6abdb298d751563c9d1
parent6e4c26aa08f4ba32749292ebdd13af3320a93d0f (diff)
04.08 / MNCC: elevate error messages to LOGL_ERROR
this way you can actually see them...
-rw-r--r--openbsc/src/libmsc/gsm_04_08.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/openbsc/src/libmsc/gsm_04_08.c b/openbsc/src/libmsc/gsm_04_08.c
index a6ed3e83e..ff012246d 100644
--- a/openbsc/src/libmsc/gsm_04_08.c
+++ b/openbsc/src/libmsc/gsm_04_08.c
@@ -1602,7 +1602,7 @@ static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
if (bts->type != remote_bts->type) {
- DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
+ LOGP(DCC, LOGL_ERROR, "Cannot switch calls between different BTS types yet\n");
return -EINVAL;
}
@@ -1637,7 +1637,7 @@ static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
trau_mux_map_lchan(lchan, remote_lchan);
break;
default:
- DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
+ LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
return -EINVAL;
}
@@ -1680,7 +1680,7 @@ static int tch_recv_mncc(struct gsm_network *net, uint32_t callref, int enable)
switch (bts->type) {
case GSM_BTS_TYPE_NANOBTS:
if (ipacc_rtp_direct) {
- DEBUGP(DCC, "Error: RTP proxy is disabled\n");
+ LOGP(DCC, LOGL_ERROR, "Error: RTP proxy is disabled\n");
return -EINVAL;
}
/* in case, we don't have a RTP socket yet, we note this
@@ -1709,7 +1709,7 @@ static int tch_recv_mncc(struct gsm_network *net, uint32_t callref, int enable)
return trau_mux_unmap(NULL, callref);
break;
default:
- DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
+ LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
return -EINVAL;
}
@@ -2991,7 +2991,7 @@ int mncc_tx_to_cc(struct gsm_network *net, int msg_type, void *arg)
case GSM_BTS_TYPE_RBS2000:
return trau_send_frame(trans->conn->lchan, arg);
default:
- DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
+ LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
}
return -EINVAL;
}