aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-07-06 14:06:51 +0200
committerHarald Welte <laforge@gnumonks.org>2016-07-09 19:52:18 +0000
commitcff0d44e53bce69a9c8831925d1489c4024ccb1c (patch)
tree734c193af4cce2388a96f03871e1187bea919868 /src
parentb8f5f4e176c5402ec529225864313f0787502049 (diff)
log: osmo-bts-trx: change PDTCH block logs to DEBUG level
Many erratic PDTCH blocks are expected. To not bloat the log, notifications for this should be on debug level. See http://lists.osmocom.org/pipermail/openbsc/2016-June/009457.html (Thu, 30 Jun 2016 01:49:33 +0300 / Alexander Chemeris <alexander.chemeris@gmail.com> / Re: GPRS on osmo-trx not working) Change-Id: Ie318248aa2b8de455174e72a63c602c7aeae312c
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-trx/scheduler_trx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-trx/scheduler_trx.c b/src/osmo-bts-trx/scheduler_trx.c
index 73fcf840..d599201c 100644
--- a/src/osmo-bts-trx/scheduler_trx.c
+++ b/src/osmo-bts-trx/scheduler_trx.c
@@ -901,7 +901,7 @@ int rx_pdtch_fn(struct l1sched_trx *l1t, uint8_t tn, uint32_t fn,
/* check for complete set of bursts */
if ((*mask & 0xf) != 0xf) {
- LOGP(DL1C, LOGL_NOTICE, "Received incomplete PDTCH block "
+ LOGP(DL1C, LOGL_DEBUG, "Received incomplete PDTCH block "
"ending at fn=%u (%u/%u) for %s\n", fn,
fn % l1ts->mf_period, l1ts->mf_period,
trx_chan_desc[chan].name);
@@ -916,7 +916,7 @@ int rx_pdtch_fn(struct l1sched_trx *l1t, uint8_t tn, uint32_t fn,
n_errors, n_bits_total, *rssi_sum / *rssi_num, *toa_sum / *toa_num);
if (rc <= 0) {
- LOGP(DL1C, LOGL_NOTICE, "Received bad PDTCH block ending at "
+ LOGP(DL1C, LOGL_DEBUG, "Received bad PDTCH block ending at "
"fn=%u (%u/%u) for %s\n", fn, fn % l1ts->mf_period,
l1ts->mf_period, trx_chan_desc[chan].name);
return 0;