aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-08-12 09:31:27 +0200
committerHarald Welte <laforge@gnumonks.org>2015-09-06 14:48:11 +0200
commit79be13798a7b6444306751bcde879137c0ceda3c (patch)
tree990e1bcc4afe097fc899c4d8f863e78267ce43e9 /src
parent1c3e7402a49f983724715f66dbcdcfa5fc42c00d (diff)
TRX: Changed logging of unserved primitives from LOGL_NOTICE to LOGL_INFO
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-trx/scheduler.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osmo-bts-trx/scheduler.c b/src/osmo-bts-trx/scheduler.c
index ef000144..6652909f 100644
--- a/src/osmo-bts-trx/scheduler.c
+++ b/src/osmo-bts-trx/scheduler.c
@@ -642,7 +642,7 @@ static ubit_t *tx_data_fn(struct trx_l1h *l1h, uint8_t tn, uint32_t fn,
if (msg)
goto got_msg;
- LOGP(DL1C, LOGL_NOTICE, "%s has not been served !! No prim for "
+ LOGP(DL1C, LOGL_INFO, "%s has not been served !! No prim for "
"trx=%u ts=%u at fn=%u to transmit.\n",
trx_chan_desc[chan].name, l1h->trx->nr, tn, fn);
@@ -720,7 +720,7 @@ static ubit_t *tx_pdtch_fn(struct trx_l1h *l1h, uint8_t tn, uint32_t fn,
if (msg)
goto got_msg;
- LOGP(DL1C, LOGL_NOTICE, "%s has not been served !! No prim for "
+ LOGP(DL1C, LOGL_INFO, "%s has not been served !! No prim for "
"trx=%u ts=%u at fn=%u to transmit.\n",
trx_chan_desc[chan].name, l1h->trx->nr, tn, fn);
@@ -1029,7 +1029,7 @@ static ubit_t *tx_tchf_fn(struct trx_l1h *l1h, uint8_t tn, uint32_t fn,
/* mo message at all */
if (!msg_tch && !msg_facch) {
- LOGP(DL1C, LOGL_NOTICE, "%s has not been served !! No prim for "
+ LOGP(DL1C, LOGL_INFO, "%s has not been served !! No prim for "
"trx=%u ts=%u at fn=%u to transmit.\n",
trx_chan_desc[chan].name, l1h->trx->nr, tn, fn);
goto send_burst;
@@ -1119,7 +1119,7 @@ static ubit_t *tx_tchh_fn(struct trx_l1h *l1h, uint8_t tn, uint32_t fn,
/* mo message at all */
if (!msg_tch && !msg_facch && !chan_state->dl_ongoing_facch) {
- LOGP(DL1C, LOGL_NOTICE, "%s has not been served !! No prim for "
+ LOGP(DL1C, LOGL_INFO, "%s has not been served !! No prim for "
"trx=%u ts=%u at fn=%u to transmit.\n",
trx_chan_desc[chan].name, l1h->trx->nr, tn, fn);
goto send_burst;