From ed6044eb546f7baac686f1e9d158e69767865018 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Thu, 14 Nov 2019 17:42:48 +0100 Subject: [PATCH] enb,rrc: always print full RRC message contents Do not limit them to 1024 chars. --- srsenb/src/stack/rrc/rrc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/stack/rrc/rrc.cc b/srsenb/src/stack/rrc/rrc.cc index ecb6d4c17..136cc9a1a 100644 --- a/srsenb/src/stack/rrc/rrc.cc +++ b/srsenb/src/stack/rrc/rrc.cc @@ -201,7 +201,7 @@ void rrc::log_rrc_message(const std::string& source, dir == Tx ? "Tx" : "Rx", msg.msg.c1().type().to_string().c_str(), pdu->N_bytes); - rrc_log->debug("Content:\n%s\n", json_writer.to_string().c_str()); + rrc_log->debug_long("Content:\n%s\n", json_writer.to_string().c_str()); } }