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.
This commit is contained in:
Holger Hans Peter Freyther 2012-12-06 19:00:35 +01:00
parent 10049bc3b7
commit 1411c066cc
1 changed files with 2 additions and 2 deletions

View File

@ -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)