From c44db4a5341c1c86de784bb74d4dbd2063a4c010 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 29 Jul 2010 14:50:57 +0800 Subject: [PATCH] abis_rsl: Reduce level from notice to debug for measurement reports It can happen that OpenBSC decides to close the lchan but we still receive some measurement reports until the BTS has decided to close the channel. --- openbsc/src/abis_rsl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbsc/src/abis_rsl.c b/openbsc/src/abis_rsl.c index 5093d793f..7b19d7f43 100644 --- a/openbsc/src/abis_rsl.c +++ b/openbsc/src/abis_rsl.c @@ -938,7 +938,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; }