From 4eb5ee5c582e5fa83bfc9e4ce8f754495d9b94ad Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Fri, 10 Nov 2017 18:01:32 +0100 Subject: [PATCH] Removed console debugging messages --- lib/src/upper/rlc_am.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/src/upper/rlc_am.cc b/lib/src/upper/rlc_am.cc index b6599f24a..f8abc0aef 100644 --- a/lib/src/upper/rlc_am.cc +++ b/lib/src/upper/rlc_am.cc @@ -1185,12 +1185,10 @@ int rlc_am::required_buffer_size(rlc_amd_retx_t retx) if (tx_window[retx.sn].buf) { return rlc_am_packed_length(&tx_window[retx.sn].header) + tx_window[retx.sn].buf->N_bytes; } else { - log->console("retx.sn=%d has null ptr\n", retx.sn); log->warning("retx.sn=%d has null ptr in required_buffer_size()\n", retx.sn); return -1; } } else { - log->console("retx.sn=%d does not exist\n", retx.sn); log->warning("retx.sn=%d does not exist in required_buffer_size()\n", retx.sn); return -1; }