Skip to content

Commit 1520894

Browse files
cu_cp: Fix logging
1 parent a7c56f9 commit 1520894

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/cu_cp/routines/pdu_session_resource_setup_routine.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void pdu_session_resource_setup_routine::operator()(
8282

8383
// Perform initial sanity checks on incoming message.
8484
if (!rrc_ue_up_resource_manager.validate_request(setup_msg.pdu_session_res_setup_items)) {
85-
logger.warning("ue={}: \"{}\" Invalid PduSessionResourceSetup", setup_msg.ue_index, name());
85+
logger.info("ue={}: \"{}\" Invalid PduSessionResourceSetup", setup_msg.ue_index, name());
8686
CORO_EARLY_RETURN(handle_pdu_session_resource_setup_result(false));
8787
}
8888

@@ -389,7 +389,7 @@ pdu_session_resource_setup_routine::handle_pdu_session_resource_setup_result(boo
389389
}
390390
rrc_ue_up_resource_manager.apply_config_update(result);
391391
} else {
392-
logger.warning("ue={}: \"{}\" failed", setup_msg.ue_index, name());
392+
logger.info("ue={}: \"{}\" failed", setup_msg.ue_index, name());
393393

394394
mark_all_sessions_as_failed(response_msg, setup_msg, cause_radio_network_t::unspecified);
395395
}

lib/e1ap/cu_cp/e1ap_cu_cp_impl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ async_task<void>
144144
e1ap_cu_cp_impl::handle_bearer_context_release_command(const e1ap_bearer_context_release_command& command)
145145
{
146146
if (!ue_ctxt_list.contains(command.ue_index)) {
147-
logger.warning("ue={}: Dropping BearerContextReleaseCommand. Bearer context does not exist", command.ue_index);
147+
logger.debug("ue={}: Dropping BearerContextReleaseCommand. Bearer context does not exist", command.ue_index);
148148
return launch_async([](coro_context<async_task<void>>& ctx) mutable {
149149
CORO_BEGIN(ctx);
150150
CORO_RETURN();

0 commit comments

Comments
 (0)