dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-abis/+/31317 )
Change subject: trau_pcu_ericsson: change loglevel for CPS decoding ......................................................................
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 --- M src/trau/trau_pcu_ericsson.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-abis refs/changes/17/31317/1
diff --git a/src/trau/trau_pcu_ericsson.c b/src/trau/trau_pcu_ericsson.c index 3a5a6d5..0b0477b 100644 --- a/src/trau/trau_pcu_ericsson.c +++ b/src/trau/trau_pcu_ericsson.c @@ -1708,13 +1708,13 @@ 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; }