summaryrefslogtreecommitdiffstats
path: root/src/host/virt_phy/src/virt_prim_rach.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-07-19 13:01:56 +0200
committerHarald Welte <laforge@gnumonks.org>2017-07-19 13:01:56 +0200
commitd80c6f4ef8a58a728ed41e6f36d57b96cad4c4ce (patch)
tree152e8d087967a0bfb9e6a957c9657527bd33c534 /src/host/virt_phy/src/virt_prim_rach.c
parentf7dafcc5d2db77c03354c549e5493b2c4f78ac67 (diff)
VIRT-PHY: Clean up logging statements
The generated log lines have been *super* long, let's make them significantly shorter. Also, differentiate between DEBUG and INFO level, so normal operation with LOGL_INFO will not spam the user while still printing useful information. Change-Id: If06a8b5f99349796d66a71201524361a6547945a
Diffstat (limited to 'src/host/virt_phy/src/virt_prim_rach.c')
-rw-r--r--src/host/virt_phy/src/virt_prim_rach.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/host/virt_phy/src/virt_prim_rach.c b/src/host/virt_phy/src/virt_prim_rach.c
index c5bac731..8fb0e2f7 100644
--- a/src/host/virt_phy/src/virt_prim_rach.c
+++ b/src/host/virt_phy/src/virt_prim_rach.c
@@ -82,7 +82,7 @@ void l1ctl_rx_rach_req(struct l1_model_ms *ms, struct msgb *msg)
uint8_t ts = 1; /* FIXME mostly, ts 1 is used for rach, where can i get that info? System info? */
uint16_t offset = ntohs(rach_req->offset);
- DEBUGPMS(DL1C, ms, "Received and handled from l23 - L1CTL_RACH_REQ (ra=0x%02x, offset=%d combined=%d)\n",
+ LOGPMS(DL1C, LOGL_INFO, ms, "Rx L1CTL_RACH_REQ (ra=0x%02x, offset=%d combined=%d)\n",
rach_req->ra, offset, rach_req->combined);
if (rach_req->ra == 0x03)
@@ -123,7 +123,6 @@ void l1ctl_tx_rach_conf(struct l1_model_ms *ms, uint32_t fn, uint16_t arfcn)
{
struct msgb *msg = l1ctl_create_l2_msg(L1CTL_RACH_CONF, fn, 0, arfcn);
- DEBUGPMS(DL1C, ms, "Sending to l23 - %s (fn: %u, arfcn: %u)\n",
- getL1ctlPrimName(L1CTL_RACH_CONF), fn, arfcn);
+ LOGPMS(DL1C, LOGL_INFO, ms, "Tx L1CTL_RACH_CONF (fn: %u, arfcn: %u)\n", fn, arfcn);
l1ctl_sap_tx_to_l23_inst(ms, msg);
}