From ef8e2ef6817a78e1598586dfc7275982ec21fd5a Mon Sep 17 00:00:00 2001 From: Mike McTernan Date: Thu, 4 Aug 2016 16:03:12 +0200 Subject: osmo-bts-trx: log decoder bit errors as DEBUG, not NOTICE It is not an exceptional situation if the air-interface is experiencing non-recoverable decoding errors. At bad signal conditions and/or interference, this is perfectly normal. Let's use DEBUG instead of NOTICE log level. Change-Id: Ifd39c53ec22f57cdb5299e5d76ff6ff1482d3beb --- src/osmo-bts-trx/scheduler_trx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bts-trx/scheduler_trx.c b/src/osmo-bts-trx/scheduler_trx.c index e02232b2..02e7aba8 100644 --- a/src/osmo-bts-trx/scheduler_trx.c +++ b/src/osmo-bts-trx/scheduler_trx.c @@ -877,7 +877,7 @@ int rx_data_fn(struct l1sched_trx *l1t, uint8_t tn, uint32_t fn, /* decode */ rc = xcch_decode(l2, *bursts_p, &n_errors, &n_bits_total); if (rc) { - LOGP(DL1C, LOGL_NOTICE, "Received bad data frame at fn=%u " + LOGP(DL1C, LOGL_DEBUG, "Received bad data frame at fn=%u " "(%u/%u) for %s\n", *first_fn, (*first_fn) % l1ts->mf_period, l1ts->mf_period, trx_chan_desc[chan].name); -- cgit v1.2.3