From 828c7ec02df9017c30f2f6bca751a26ba1424ff5 Mon Sep 17 00:00:00 2001 From: Robert Falkenberg Date: Thu, 28 Apr 2022 12:23:47 +0200 Subject: [PATCH] lib,rlc_am_nr: Change log level for already acked (removed) RETX. --- lib/src/rlc/rlc_am_nr.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/rlc/rlc_am_nr.cc b/lib/src/rlc/rlc_am_nr.cc index 6045a3dcc..204d4f2c2 100644 --- a/lib/src/rlc/rlc_am_nr.cc +++ b/lib/src/rlc/rlc_am_nr.cc @@ -444,12 +444,12 @@ uint32_t rlc_am_nr_tx::build_retx_pdu(uint8_t* payload, uint32_t nof_bytes) // Sanity check - drop any retx SNs not present in tx_window while (not tx_window->has_sn(retx.sn)) { - RlcWarning("SN=%d not in tx window. Ignoring retx.", retx.sn); + RlcInfo("SN=%d not in tx window, probably already ACKed. Skip and remove from retx queue", retx.sn); retx_queue->pop(); if (!retx_queue->empty()) { retx = retx_queue->front(); } else { - RlcWarning("empty retx queue, cannot provide retx PDU"); + RlcInfo("empty retx queue, cannot provide any retx PDU"); return 0; } }