From 7fd9a29eba9b87ac41aef0118de66eca00973f70 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 30 Nov 2020 12:18:38 +0100 Subject: [PATCH] tbf: Log previous TS when changing Control TS Change-Id: I5f37f3512dde60e4eb1ccebbb2d96de24604d241 --- src/tbf.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tbf.cpp b/src/tbf.cpp index d57c537..e92dfb6 100644 --- a/src/tbf.cpp +++ b/src/tbf.cpp @@ -363,8 +363,8 @@ int tbf_assign_control_ts(struct gprs_rlcmac_tbf *tbf) LOGPTBF(tbf, LOGL_INFO, "Setting Control TS %d\n", tbf->first_common_ts); else if (tbf->control_ts != tbf->first_common_ts) - LOGPTBF(tbf, LOGL_INFO, "Changing Control TS %d\n", - tbf->first_common_ts); + LOGPTBF(tbf, LOGL_INFO, "Changing Control TS %d -> %d\n", + tbf->control_ts, tbf->first_common_ts); tbf->control_ts = tbf->first_common_ts; return 0;