From 2c5a74340b92f5d78aa2d7ef501ebf1376c0246d Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Thu, 12 May 2022 16:36:48 +0100 Subject: [PATCH] lib,rlc_um_nr: reduce log level of message --- lib/src/rlc/rlc_um_nr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/rlc/rlc_um_nr.cc b/lib/src/rlc/rlc_um_nr.cc index 743285904..878638a03 100644 --- a/lib/src/rlc/rlc_um_nr.cc +++ b/lib/src/rlc/rlc_um_nr.cc @@ -150,7 +150,7 @@ uint32_t rlc_um_nr::rlc_um_nr_tx::build_data_pdu(unique_byte_buffer_t pdu, uint8 tx_sdu = tx_sdu_queue.read(); } while (tx_sdu == nullptr && tx_sdu_queue.size() != 0); if (tx_sdu == nullptr) { - RlcInfo("Cannot build any PDU: tx_sdu_queue has no non-null SDU."); + RlcDebug("Cannot build any PDU, tx_sdu_queue has no non-null SDU."); return 0; } next_so = 0;