Remove NR RRC log line

master
David Rupprecht 4 years ago committed by Xavier Arteaga
parent 1cbd1c9d26
commit 138230f4e4

@ -89,9 +89,9 @@ void rrc_nr::get_metrics(rrc_nr_metrics_t& m) {}
// Timeout callback interface // Timeout callback interface
void rrc_nr::timer_expired(uint32_t timeout_id) void rrc_nr::timer_expired(uint32_t timeout_id)
{ {
logger.debug("[NR] Handling Timer Expired"); logger.debug("Handling Timer Expired");
if (timeout_id == fake_measurement_timer.id()) { if (timeout_id == fake_measurement_timer.id()) {
logger.debug("[NR] Triggered Fake Measurement"); logger.debug("Triggered Fake Measurement");
phy_meas_nr_t fake_meas = {}; phy_meas_nr_t fake_meas = {};
std::vector<phy_meas_nr_t> phy_meas_nr; std::vector<phy_meas_nr_t> phy_meas_nr;
@ -395,13 +395,13 @@ void rrc_nr::phy_meas_stop()
{ {
// possbile race condition for fake_measurement timer, which might be set at the same moment as stopped => fix with // possbile race condition for fake_measurement timer, which might be set at the same moment as stopped => fix with
// phy integration // phy integration
logger.debug("[NR] Stopping fake measurements"); logger.debug("Stopping fake measurements");
fake_measurement_timer.stop(); fake_measurement_timer.stop();
} }
void rrc_nr::phy_set_cells_to_meas(uint32_t carrier_freq_r15) void rrc_nr::phy_set_cells_to_meas(uint32_t carrier_freq_r15)
{ {
logger.debug("[NR] Measuring phy cell %d ", carrier_freq_r15); logger.debug("Measuring phy cell %d ", carrier_freq_r15);
// Start timer for fake measurements // Start timer for fake measurements
auto timer_expire_func = [this](uint32_t tid) { timer_expired(tid); }; auto timer_expire_func = [this](uint32_t tid) { timer_expired(tid); };
fake_measurement_carrier_freq_r15 = carrier_freq_r15; fake_measurement_carrier_freq_r15 = carrier_freq_r15;
@ -411,7 +411,7 @@ void rrc_nr::phy_set_cells_to_meas(uint32_t carrier_freq_r15)
bool rrc_nr::configure_sk_counter(uint16_t sk_counter) bool rrc_nr::configure_sk_counter(uint16_t sk_counter)
{ {
logger.info("[NR] Configure new SK counter %d. Update Key for secondary gnb", sk_counter); logger.info("Configure new SK counter %d. Update Key for secondary gnb", sk_counter);
if (usim->generate_nr_context(sk_counter, &sec_cfg) == false) { if (usim->generate_nr_context(sk_counter, &sec_cfg) == false) {
return false; return false;
} }

Loading…
Cancel
Save