rrc: improve log message when detecting RLF

This commit is contained in:
Andre Puschmann 2020-10-06 17:15:52 +02:00
parent ae32ab9b13
commit 362461329a
1 changed files with 2 additions and 2 deletions

View File

@ -623,10 +623,10 @@ void rrc::radio_link_failure_process()
if (state == RRC_STATE_CONNECTED) {
if (security_is_activated) {
rrc_log->warning("Detected Radio-Link Failure while SA activated. Starting ConnectionReestablishment...\n");
rrc_log->warning("Detected Radio-Link Failure with active AS security. Starting ConnectionReestablishment...\n");
start_con_restablishment(reest_cause_e::other_fail);
} else {
rrc_log->warning("Detected Radio-Link Failure while SA not activated. Going to IDLE...\n");
rrc_log->warning("Detected Radio-Link Failure with AS security deactivated. Going to IDLE...\n");
start_go_idle();
}
} else {