enb,rrc: always print full RRC message contents

Do not limit them to 1024 chars.
This commit is contained in:
Aleksander Morgado 2019-11-14 17:42:48 +01:00 committed by Andre Puschmann
parent 03bd63d9ab
commit ed6044eb54
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}
}