From d04e3e708bcdd8af26f072393d91088eb66e4bf3 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sat, 15 Jul 2023 01:20:13 +0700 Subject: [PATCH] osmo-bts-trx: change 'Received bad data' back to LOGL_DEBUG In f2c902c2 I accidentally bumped the logging level for PDCH decoding errors to LOGL_NOTICE, making osmo-bts-trx spam the logging with hundreds of 'Received bad data' messsages. Revert this. Change-Id: Idb963f1a779dfa172825f6d481740cb0c4165485 Fixes: f2c902c2 "osmo-bts-trx: unify and enrich 'Received bad data' logging" --- src/osmo-bts-trx/sched_lchan_pdtch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bts-trx/sched_lchan_pdtch.c b/src/osmo-bts-trx/sched_lchan_pdtch.c index 172053757..9f7c31432 100644 --- a/src/osmo-bts-trx/sched_lchan_pdtch.c +++ b/src/osmo-bts-trx/sched_lchan_pdtch.c @@ -122,7 +122,7 @@ int rx_pdtch_fn(struct l1sched_ts *l1ts, const struct trx_ul_burst_ind *bi) if (rc > 0) { presence_info = PRES_INFO_BOTH; } else { - LOGL1SB(DL1P, LOGL_NOTICE, l1ts, bi, + LOGL1SB(DL1P, LOGL_DEBUG, l1ts, bi, BAD_DATA_MSG_FMT "\n", BAD_DATA_MSG_ARGS); rc = 0; presence_info = PRES_INFO_INVALID;