From 362461329a2276112a287a8d0481bdd311091dff Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Tue, 6 Oct 2020 17:15:52 +0200 Subject: [PATCH] rrc: improve log message when detecting RLF --- srsue/src/stack/rrc/rrc.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srsue/src/stack/rrc/rrc.cc b/srsue/src/stack/rrc/rrc.cc index d1faad8ef..8a35059a3 100644 --- a/srsue/src/stack/rrc/rrc.cc +++ b/srsue/src/stack/rrc/rrc.cc @@ -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 {