aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-08-12 09:31:27 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2014-01-21 15:54:46 +0100
commit3ea705823890d0b4a7e8720be9a488c2d198ee99 (patch)
tree7700c5f7ee8f670c54e0760e26ce2a0f97284bf5
parent0999cb10a17cf36017a413a20c29292027454328 (diff)
TRX: Changed logging of unserved primitives from LOGL_NOTICE to LOGL_INFO
-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;