From bb2777536a136e793350da6d64b5e6b53ba41775 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Fri, 4 Feb 2022 10:06:28 +0100 Subject: [PATCH] rrc_nr: reduce loglevel to debug for some reconfig parsing messages --- srsue/src/stack/rrc_nr/rrc_nr.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srsue/src/stack/rrc_nr/rrc_nr.cc b/srsue/src/stack/rrc_nr/rrc_nr.cc index 7593f6afd..8c3c4c8a3 100644 --- a/srsue/src/stack/rrc_nr/rrc_nr.cc +++ b/srsue/src/stack/rrc_nr/rrc_nr.cc @@ -1635,7 +1635,7 @@ bool rrc_nr::update_sp_cell_cfg(const sp_cell_cfg_s& sp_cell_cfg) return false; } if (recfg_with_sync.sp_cell_cfg_common.tdd_ul_dl_cfg_common_present) { - logger.info("TDD UL DL config present, using TDD"); + logger.debug("TDD UL DL config present, using TDD"); srsran_duplex_config_nr_t duplex; if (make_phy_tdd_cfg(recfg_with_sync.sp_cell_cfg_common.tdd_ul_dl_cfg_common, &duplex) == true) { phy_cfg.duplex = duplex; @@ -1644,7 +1644,7 @@ bool rrc_nr::update_sp_cell_cfg(const sp_cell_cfg_s& sp_cell_cfg) return false; } } else { - logger.info("TDD UL DL config not present, using FDD"); + logger.debug("TDD UL DL config not present, using FDD"); } } } else {