File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -152,10 +152,10 @@ class srsran::srs_du::du_ue_controller_impl::rlf_state_machine
152152 // The release timer is not running yet. We need to store the cause and start the timer.
153153 current_cause = cause;
154154 auto timeout_val = get_release_timeout ();
155- logger.info (" ue={}: RLF detected with cause=\" {}\" . Timer of {} msec to release UE started..." ,
156- ue_ctx.ue_index ,
157- get_rlf_cause_str (cause),
158- timeout_val.count ());
155+ logger.warning (" ue={}: RLF detected with cause=\" {}\" . Timer of {} msec to release UE started..." ,
156+ ue_ctx.ue_index ,
157+ get_rlf_cause_str (cause),
158+ timeout_val.count ());
159159
160160 // Start timer.
161161 release_timer.set (timeout_val, [this ](timer_id_t tid) { trigger_ue_release (); });
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ class rlf_detector
9090 if (current_count == max_consecutive_kos[cell_index].max_consecutive_csi_dtx ) {
9191 std::lock_guard<std::mutex> lock (u.notifier_mutex );
9292 if (u.notifier != nullptr ) {
93- logger.warning (" ue={}: RLF detected. Cause: {} consecutive undecoded CSIs" , ue_index, current_count);
93+ logger.info (" ue={}: RLF detected. Cause: {} consecutive undecoded CSIs" , ue_index, current_count);
9494
9595 // Notify upper layers.
9696 u.notifier ->on_rlf_detected ();
@@ -127,10 +127,10 @@ class rlf_detector
127127 if (current_count == max_counter) {
128128 std::lock_guard<std::mutex> lock (u.notifier_mutex );
129129 if (u.notifier != nullptr ) {
130- logger.warning (" ue={}: RLF detected. Cause: {} consecutive {} KOs." ,
131- ue_index,
132- current_count,
133- is_dl ? " HARQ-ACK" : " CRC" );
130+ logger.info (" ue={}: RLF detected. Cause: {} consecutive {} KOs." ,
131+ ue_index,
132+ current_count,
133+ is_dl ? " HARQ-ACK" : " CRC" );
134134
135135 // Notify upper layers.
136136 u.notifier ->on_rlf_detected ();
You can’t perform that action at this time.
0 commit comments