From 64d50040e7fb4f0af1b5fe34a5394e4da2bb223e Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Mon, 15 Apr 2019 14:52:09 +0100 Subject: [PATCH] Changed some paging logs to debug and removed noisy print to console in the EPC --- srsepc/src/spgw/gtpc.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/srsepc/src/spgw/gtpc.cc b/srsepc/src/spgw/gtpc.cc index 3105e9d63..2599b53f1 100644 --- a/srsepc/src/spgw/gtpc.cc +++ b/srsepc/src/spgw/gtpc.cc @@ -359,8 +359,7 @@ bool spgw::gtpc::send_downlink_data_notification(uint32_t spgw_ctr_teid) // Check if there is no Paging already pending. if (tunnel_ctx->paging_pending == true) { - m_gtpc_log->console("UE Downlink Data Notification still pending.\n"); - m_gtpc_log->warning("UE Downlink Data Notification still pending.\n"); + m_gtpc_log->debug("UE Downlink Data Notification still pending.\n"); return false; } @@ -517,7 +516,7 @@ bool spgw::gtpc::queue_downlink_packet(uint32_t ctrl_teid, srslte::byte_buffer_t m_gtpc_log->debug("Queued packet. IMSI %" PRIu64 ", Packets in Queue %zd\n", tunnel_ctx->imsi, tunnel_ctx->paging_queue.size()); } else { - m_gtpc_log->warning("Paging queue full. IMSI %" PRIu64 ", Packets in Queue %zd\n", tunnel_ctx->imsi, + m_gtpc_log->debug("Paging queue full. IMSI %" PRIu64 ", Packets in Queue %zd\n", tunnel_ctx->imsi, tunnel_ctx->paging_queue.size()); goto pkt_discard; }