From b762e62125824b51bc8278c02882bf243c4a4f30 Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Wed, 18 Aug 2021 11:20:23 +0100 Subject: [PATCH] Bump SCTP event notification logging to info. --- srsenb/src/stack/s1ap/s1ap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/stack/s1ap/s1ap.cc b/srsenb/src/stack/s1ap/s1ap.cc index e5302c2e2..3e007acac 100644 --- a/srsenb/src/stack/s1ap/s1ap.cc +++ b/srsenb/src/stack/s1ap/s1ap.cc @@ -549,7 +549,7 @@ bool s1ap::handle_mme_rx_msg(srsran::unique_byte_buffer_t pdu, if (flags & MSG_NOTIFICATION) { // Received notification union sctp_notification* notification = (union sctp_notification*)pdu->msg; - logger.debug("SCTP Notification %d", notification->sn_header.sn_type); + logger.info("SCTP Notification %04x", notification->sn_header.sn_type); if (notification->sn_header.sn_type == SCTP_SHUTDOWN_EVENT) { logger.info("SCTP Association Shutdown. Association: %d", sri.sinfo_assoc_id); srsran::console("SCTP Association Shutdown. Association: %d\n", sri.sinfo_assoc_id);