From 1411c066cc3ddaa46437cac7c580a04a1fe95eb1 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 6 Dec 2012 19:00:35 +0100 Subject: rsl: Use LOGL_ERROR instead of LOGL_NOTICE act/deact timeouts It is a grave error when the BTS does not respond to the ACT/DEACT requests, use LOGL_ERROR for such conditions. --- openbsc/src/libbsc/abis_rsl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openbsc/src/libbsc') diff --git a/openbsc/src/libbsc/abis_rsl.c b/openbsc/src/libbsc/abis_rsl.c index b703c034f..d365a9718 100644 --- a/openbsc/src/libbsc/abis_rsl.c +++ b/openbsc/src/libbsc/abis_rsl.c @@ -182,7 +182,7 @@ static void lchan_act_tmr_cb(void *data) { struct gsm_lchan *lchan = data; - LOGP(DRSL, LOGL_NOTICE, "%s Timeout during activation!\n", + LOGP(DRSL, LOGL_ERROR, "%s Timeout during activation!\n", gsm_lchan_name(lchan)); rsl_lchan_set_state(lchan, LCHAN_S_NONE); @@ -193,7 +193,7 @@ static void lchan_deact_tmr_cb(void *data) { struct gsm_lchan *lchan = data; - LOGP(DRSL, LOGL_NOTICE, "%s Timeout during deactivation!\n", + LOGP(DRSL, LOGL_ERROR, "%s Timeout during deactivation!\n", gsm_lchan_name(lchan)); if (lchan->state != LCHAN_S_REL_ERR) -- cgit v1.2.3