log: Fix "Paging request failed" logging level

"Paging request failed" message can be logged e.g. when we're already
paging this subscriber which means we get hundreds of these messages
in a perfectly normal situation. Let's demote this to INFO and adjust
the wording.

Change-Id: I97214796906ac599338e87b2b4b5465ab6b2447a
This commit is contained in:
Alexander Chemeris 2020-05-16 17:54:16 +03:00
parent e0fd48c5ea
commit 7b9c8ea175
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ page_subscriber(struct bsc_msc_data *msc, struct gsm_bts *bts,
ret = bsc_grace_paging_request(msc->network->bsc_data->rf_ctrl->policy, subscr, chan_needed, msc, bts);
if (ret == 0)
LOGP(DMSC, LOGL_ERROR, "Paging request failed: BTS: %d IMSI: '%s' TMSI: '0x%x/%u' LAC: 0x%x\n",
LOGP(DMSC, LOGL_INFO, "Paging request failed or repeated paging: BTS: %d IMSI: '%s' TMSI: '0x%x/%u' LAC: 0x%x\n",
bts->nr, mi_string, tmsi, tmsi, lac);
/* the paging code has grabbed its own references */