aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-07-06 14:06:23 +0200
committerHarald Welte <laforge@gnumonks.org>2016-07-09 19:50:50 +0000
commitb8f5f4e176c5402ec529225864313f0787502049 (patch)
treea42a0f09d7cbaf88273af93a9fa1c5221fc773b9 /src
parentb151301c6c91f8ecc02aa18ee746b02cf61f6fee (diff)
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 <tom@tsou.cc> / Re: osmo-bts-trx error logs -- was: GPRS on osmo-trx not working) Change-Id: If591c087ba8fd48564139e32930050ee8ab07001
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 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;
}