From 6de34524e2c3dababa8e3f7aed816dcae7f530a4 Mon Sep 17 00:00:00 2001 From: Xavier Arteaga Date: Wed, 26 May 2021 13:58:58 +0200 Subject: [PATCH] Fix SRSENB PHY log line --- srsenb/src/phy/lte/cc_worker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/phy/lte/cc_worker.cc b/srsenb/src/phy/lte/cc_worker.cc index 25a93fffe..fe4b2e2bd 100644 --- a/srsenb/src/phy/lte/cc_worker.cc +++ b/srsenb/src/phy/lte/cc_worker.cc @@ -457,7 +457,7 @@ int cc_worker::encode_pdcch_ul(stack_interface_phy_lte::ul_sched_grant_t* grants srsran_dci_cfg_t dci_cfg = {}; if (phy->ue_db.get_dci_ul_config(grants[i].dci.rnti, cc_idx, dci_cfg) < SRSRAN_SUCCESS) { - Error("Error retrieving DCI UL configuration for cc=%d rnti=0x%x", grants[i].dci.rnti, cc_idx); + Error("Error retrieving DCI UL configuration for RNTI %x, CC %d", grants[i].dci.rnti, cc_idx); continue; }