aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMike McTernan <mike.mcternan@wavemobile.com>2016-08-04 16:03:12 +0200
committerHarald Welte <laforge@gnumonks.org>2016-08-08 17:46:34 +0000
commitef8e2ef6817a78e1598586dfc7275982ec21fd5a (patch)
tree2ab6da51e5f32022183ef1e98061fed843437bc7 /src
parentb7cdd381d63496075a9df0e8ea46020cd55ae667 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-trx/scheduler_trx.c2
1 files changed, 1 insertions, 1 deletions
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);