From 715aeb4ebc3e5f82031339feddffa5729e15ba94 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Wed, 10 Nov 2021 17:21:41 +0100 Subject: [PATCH] pdch: Increase log level of line informing about TS control change This way it's the same log level as the one used in all other paths using tbf_assign_control_ts() to assign tbf->control_ts = tbf->first_common_ts, and this specific event is not lost from logs. Change-Id: Ia32d835ee4c14d7d48391452b5e3d05ed88e0483 --- src/pdch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pdch.cpp b/src/pdch.cpp index c48b078e..a942b012 100644 --- a/src/pdch.cpp +++ b/src/pdch.cpp @@ -763,7 +763,7 @@ void gprs_rlcmac_pdch::rcv_resource_request(Packet_Resource_Request_t *request, * sent to tbf_fsm which will call tbf_assign_control_ts(), * effectively setting back control_ts to * tbf->initial_common_ts. */ - LOGPTBF(ul_tbf, LOGL_DEBUG, "change control TS %d -> %d until assignment is complete.\n", + LOGPTBF(ul_tbf, LOGL_INFO, "change control TS %d -> %d until assignment is complete.\n", ul_tbf->control_ts, ts_no); ul_tbf->control_ts = ts_no;