From f62b0ec37dede666f96c17302a106483525441a0 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 13 May 2021 18:50:10 +0200 Subject: [PATCH] tbf: Log error path in setup() failing to assign control TS Change-Id: I047209dfe139e37a80878318cca75cb50905536e --- src/tbf.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tbf.cpp b/src/tbf.cpp index fddede60..adfda959 100644 --- a/src/tbf.cpp +++ b/src/tbf.cpp @@ -751,6 +751,7 @@ int gprs_rlcmac_tbf::setup(int8_t use_trx, bool single_slot) rc = tbf_assign_control_ts(this); /* if no resource */ if (rc < 0) { + LOGPTBF(this, LOGL_ERROR, "Failed to assign control TS\n"); return -1; }