aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-07-26 17:18:52 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-08-23 17:14:21 +0200
commitf45ede640b75be9f8bae4f55dccd481cfd762704 (patch)
tree998395663ebbf8d7de7f36bc056388b0852058c6
parentcfb61d95369b1c4fcc4f98ba81eae98b02d7e2ab (diff)
Drop duplicate log line
Same line (or similar if run_diag) is logged immediately below, showing up twice in log which is confusing: """ 20210726171543005 DTBF tbf.cpp:455 TBF(TFI=2 TLLI=0xfe563576 DIR=DL STATE=WAIT_RELEASE EGPRS) T3193 timeout expired, freeing TBF 20210726171543005 DTBF tbf.cpp:462 TBF(TFI=2 TLLI=0xfe563576 DIR=DL STATE=WAIT_RELEASE EGPRS) T3193 timeout expired, freeing TBF """ Change-Id: Ie171c458e670f8471ac93f78520a05926114c974
-rw-r--r--src/tbf.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/tbf.cpp b/src/tbf.cpp
index 107c867d..6ed8e3d0 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -452,9 +452,6 @@ void gprs_rlcmac_tbf::stop_timers(const char *reason)
static inline void tbf_timeout_free(struct gprs_rlcmac_tbf *tbf, enum tbf_timers t, bool run_diag)
{
- LOGPTBF(tbf, LOGL_NOTICE, "%s timeout expired, freeing TBF\n",
- get_value_string(tbf_timers_names, t));
-
if (run_diag) {
LOGPTBF(tbf, LOGL_NOTICE, "%s timeout expired, freeing TBF: %s\n",
get_value_string(tbf_timers_names, t), tbf->rlcmac_diag().c_str());