aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-12-06 19:00:35 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-12-23 20:18:17 +0100
commit1411c066cc3ddaa46437cac7c580a04a1fe95eb1 (patch)
treec85425096eab2058594ee1865c1ab636d5d0935b
parent10049bc3b701a0e8ce1dc5242c7c683a8c0ca99b (diff)
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.
-rw-r--r--openbsc/src/libbsc/abis_rsl.c4
1 files changed, 2 insertions, 2 deletions
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)