summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon/sched_lchan_tchf.c
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-12-16 16:33:17 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2017-12-16 16:33:17 +0700
commit60ff614446fedc7b12767d9520abfc529a65fc7e (patch)
treea92b1ac7eb91371a87935505fad0fb1d0ffe5700 /src/host/trxcon/sched_lchan_tchf.c
parenta9c2ef2638523d62f1f9eecb1c6c326f4c6519b6 (diff)
host/trxcon/scheduler: always print error messages
Some error messages previously had incorrect logging level 'debug'. We aren't going to hide anything, right? Let's print them! Change-Id: I85fb37292046b667386bfe26b9bbb000600e1c6f
Diffstat (limited to 'src/host/trxcon/sched_lchan_tchf.c')
-rw-r--r--src/host/trxcon/sched_lchan_tchf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/host/trxcon/sched_lchan_tchf.c b/src/host/trxcon/sched_lchan_tchf.c
index a0adf69c..7860007c 100644
--- a/src/host/trxcon/sched_lchan_tchf.c
+++ b/src/host/trxcon/sched_lchan_tchf.c
@@ -96,7 +96,7 @@ int rx_tchf_fn(struct trx_instance *trx, struct trx_ts *ts,
/* Check for complete set of bursts */
if ((*mask & 0xf) != 0xf) {
- LOGP(DSCHD, LOGL_DEBUG, "Received incomplete traffic frame at "
+ LOGP(DSCHD, LOGL_ERROR, "Received incomplete traffic frame at "
"fn=%u (%u/%u) for %s\n", *first_fn,
(*first_fn) % ts->mf_layout->period,
ts->mf_layout->period,
@@ -143,7 +143,7 @@ int rx_tchf_fn(struct trx_instance *trx, struct trx_ts *ts,
/* Check decoding result */
if (rc < 4) {
- LOGP(DSCHD, LOGL_DEBUG, "Received bad TCH frame ending at "
+ LOGP(DSCHD, LOGL_ERROR, "Received bad TCH frame ending at "
"fn=%u for %s\n", fn, lchan_desc->name);
l2_len = sched_bad_frame_ind(l2, rsl_cmode, tch_mode);