aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libbsc/abis_nm.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-09-17 14:20:48 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-09-17 14:21:53 +0200
commit9ceea68ba9fbd41164c9743e46c32e40a727ff67 (patch)
tree5b99830b77c2079793d6f0fe6c868fdb0f5d8cbc /openbsc/src/libbsc/abis_nm.c
parentca5d2111131101f7b8df40207b4c597b0e53f2cb (diff)
abis_nm: Log an error when the channel combination can not be set.
Diffstat (limited to 'openbsc/src/libbsc/abis_nm.c')
-rw-r--r--openbsc/src/libbsc/abis_nm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/libbsc/abis_nm.c b/openbsc/src/libbsc/abis_nm.c
index 23d5fa314..a6a20e0d4 100644
--- a/openbsc/src/libbsc/abis_nm.c
+++ b/openbsc/src/libbsc/abis_nm.c
@@ -1575,7 +1575,7 @@ int abis_nm_set_channel_attr(struct gsm_bts_trx_ts *ts, uint8_t chan_comb)
DEBUGP(DNM, "Set Chan Attr %s\n", gsm_ts_name(ts));
if (verify_chan_comb(ts, chan_comb) < 0) {
msgb_free(msg);
- DEBUGP(DNM, "Invalid Channel Combination!!!\n");
+ LOGP(DNM, LOGL_ERROR, "Invalid Channel Combination!!!\n");
return -EINVAL;
}
ts->nm_chan_comb = chan_comb;