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
This commit is contained in:
Neels Hofmeyr 2016-07-06 14:06:51 +02:00 committed by Harald Welte
parent b8f5f4e176
commit cff0d44e53
1 changed files with 2 additions and 2 deletions

View File

@ -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;