From b8f5f4e176c5402ec529225864313f0787502049 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Wed, 6 Jul 2016 14:06:23 +0200 Subject: log: osmo-bts-trx: change access burst logs to DEBUG level Many erratic bursts are expected. To not bloat the log, notifications for this should be on debug level. See http://lists.osmocom.org/pipermail/openbsc/2016-July/009482.html (Tue, 5 Jul 2016 15:38:27 -0700 / Tom Tsou / Re: osmo-bts-trx error logs -- was: GPRS on osmo-trx not working) Change-Id: If591c087ba8fd48564139e32930050ee8ab07001 --- src/osmo-bts-trx/scheduler_trx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osmo-bts-trx/scheduler_trx.c b/src/osmo-bts-trx/scheduler_trx.c index 9a6a59c2..73fcf840 100644 --- a/src/osmo-bts-trx/scheduler_trx.c +++ b/src/osmo-bts-trx/scheduler_trx.c @@ -718,13 +718,13 @@ int rx_rach_fn(struct l1sched_trx *l1t, uint8_t tn, uint32_t fn, chan_nr = trx_chan_desc[chan].chan_nr | tn; - LOGP(DL1C, LOGL_NOTICE, "Received Access Burst on %s fn=%u toa=%.2f\n", + LOGP(DL1C, LOGL_DEBUG, "Received Access Burst on %s fn=%u toa=%.2f\n", trx_chan_desc[chan].name, fn, toa); /* decode */ rc = rach_decode(&ra, bits + 8 + 41, l1t->trx->bts->bsic); if (rc) { - LOGP(DL1C, LOGL_NOTICE, "Received bad AB frame at fn=%u " + LOGP(DL1C, LOGL_DEBUG, "Received bad AB frame at fn=%u " "(%u/51)\n", fn, fn % 51); return 0; } -- cgit v1.2.3