trau_pcu_ericsson: change loglevel for CPS decoding

The CPS field is inside the MAC block. When we are unable to decode the
CPS field a message is printed on loglevel NOTICE. However, it is pretty
normal that the CCU often receives noise (always when no MS transmits)
so we see this error very often. Lets change the level to DEBUG.

Change-Id: I1f5adbf9da6be4fec2d8c93e781c5df62ef62238
Related: OS#5198
This commit is contained in:
Philipp Maier 2023-02-13 17:43:22 +01:00
parent 7ff2afc703
commit 31ab400147
1 changed files with 2 additions and 2 deletions

View File

@ -1708,13 +1708,13 @@ static int dec_ccu_data_ind_64(struct er_ccu_data_ind *ind, const ubit_t *trau_b
osmo_ubit2pbit_ext((pbit_t *) &ind->data, 0, trau_bits, 134, 40, 1);
cps = cps_from_mcs_block(ind->data, ind->cs_hdr, true);
if (cps < 0) {
LOGP(DLINP, LOGL_NOTICE,
LOGP(DLINP, LOGL_DEBUG,
"CCU-DATA-IND-64: unable to read CPS from data block, bad data block received?\n");
break;
}
mcs = mcs_from_cps((uint8_t) cps, ind->cs_hdr);
if (mcs < 0) {
LOGP(DLINP, LOGL_NOTICE,
LOGP(DLINP, LOGL_DEBUG,
"CCU-DATA-IND-64: unable to determine coding scheme (MCS) from CPS, bad data block received?\n");
break;
}