From fb82e00289af65ced9ce7d0e7f191c18fcd0ba99 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Mon, 18 Jun 2018 18:05:20 +0200 Subject: [PATCH] print poll retx timer expired only in debug logs --- lib/src/upper/rlc_am.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/upper/rlc_am.cc b/lib/src/upper/rlc_am.cc index a29f54216..77e81d96a 100644 --- a/lib/src/upper/rlc_am.cc +++ b/lib/src/upper/rlc_am.cc @@ -277,7 +277,7 @@ uint32_t rlc_am::get_buffer_state() // check if pollRetx timer expired (Section 5.2.2.3 in TS 36.322) if (poll_retx()) { // if both tx and retx buffer are empty, retransmit next PDU to be ack'ed - log->info("Poll reTx timer expired (lcid=%d)\n", lcid); + log->debug("Poll reTx timer expired (lcid=%d)\n", lcid); if ((tx_window.size() > 0 && retx_queue.size() == 0 && tx_sdu_queue.size() == 0)) { std::map::iterator it = tx_window.find(vt_s - 1); if (it != tx_window.end()) {