From 0f36bfbb8a03d8512c4ad0dcccb9cef771fef3d3 Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Thu, 2 May 2019 23:03:29 +0100 Subject: [PATCH] Changing print from console to debug log when generating the PDN connectivity request. --- srsue/src/upper/nas.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srsue/src/upper/nas.cc b/srsue/src/upper/nas.cc index 0127ab7b8..6092750b0 100644 --- a/srsue/src/upper/nas.cc +++ b/srsue/src/upper/nas.cc @@ -1309,13 +1309,13 @@ void nas::gen_pdn_connectivity_request(LIBLTE_BYTE_MSG_STRUCT *msg) { //Set PDN protocol type if (cfg.apn_protocol == "ipv4" || cfg.apn_protocol == ""){ - nas_log->console("Setting PDN protocol to IPv4\n"); + nas_log->debug("Requesting IPv4 PDN protocol\n"); pdn_con_req.pdn_type = LIBLTE_MME_PDN_TYPE_IPV4; } else if (cfg.apn_protocol == "ipv6") { - nas_log->console("Setting PDN protocol to IPv6\n"); + nas_log->debug("Requesting IPv6 PDN protocol\n"); pdn_con_req.pdn_type = LIBLTE_MME_PDN_TYPE_IPV6; } else if (cfg.apn_protocol == "ipv4v6") { - nas_log->console("Setting PDN protocol to IPv4v6\n"); + nas_log->debug("Requesting IPv4v6 PDN protocol\n"); pdn_con_req.pdn_type = LIBLTE_MME_PDN_TYPE_IPV4V6; } else { nas_log->warning("Unsupported PDN prtocol. Defaulting to IPv4\n");