From cff0d44e53bce69a9c8831925d1489c4024ccb1c Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Wed, 6 Jul 2016 14:06:51 +0200 Subject: 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 / Re: GPRS on osmo-trx not working) Change-Id: Ie318248aa2b8de455174e72a63c602c7aeae312c --- src/osmo-bts-trx/scheduler_trx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; -- cgit v1.2.3