aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-08-12 09:31:27 +0200
committerHarald Welte <laforge@gnumonks.org>2015-09-22 16:41:30 +0200
commit812fdd92c70679f4d5a46f9078a74e2a94cd74e4 (patch)
treebba095ccc61ae8f7ffe77d078f80b3c8e77facab
parentec6225e3e067221a3e2c19f6eda03453a2fe60e7 (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 ef00014..6652909 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;