aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-06-13 10:09:45 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-06-13 10:09:45 +0800
commit42a4e9a52de0576aa293f0a3fe085e91480d488d (patch)
tree4539a19ccaffadcbb614ebb2fb8212108d9f9073 /openbsc
parentd4f7a81992f5b45956a17aefad203ed721aa088b (diff)
abis_rsl: Reduce logging to LOGL_DEBUG as it is quite nosiy
The nanoBTS will send us at least one measurement report after we have decided to close the channel... degrade that output to a debug message.
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/abis_rsl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/abis_rsl.c b/openbsc/src/abis_rsl.c
index e7116e32a..8fd29bd73 100644
--- a/openbsc/src/abis_rsl.c
+++ b/openbsc/src/abis_rsl.c
@@ -911,7 +911,7 @@ static int rsl_rx_meas_res(struct msgb *msg)
/* check if this channel is actually active */
/* FIXME: maybe this check should be way more generic/centralized */
if (msg->lchan->state != LCHAN_S_ACTIVE) {
- LOGP(DRSL, LOGL_NOTICE, "%s: MEAS RES for inactive channel\n",
+ LOGP(DRSL, LOGL_DEBUG, "%s: MEAS RES for inactive channel\n",
gsm_lchan_name(msg->lchan));
return 0;
}