aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf_ul.cpp
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-11-06 20:03:24 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2020-11-06 20:03:24 +0100
commit305763dc6f63feada8636f05e9ce22b8d880e152 (patch)
treebd8c7a556ffeecba07149f84491bd07fca85c4b7 /src/tbf_ul.cpp
parent9897b26e3e1c8a8f4b0e6cff737d7d5ebb6358b1 (diff)
tbf_ul: Log mismatching TLLI on log message
Diffstat (limited to 'src/tbf_ul.cpp')
-rw-r--r--src/tbf_ul.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tbf_ul.cpp b/src/tbf_ul.cpp
index c594c59b..57da02a6 100644
--- a/src/tbf_ul.cpp
+++ b/src/tbf_ul.cpp
@@ -460,8 +460,8 @@ int gprs_rlcmac_ul_tbf::rcv_data_block_acknowledged(
update_ms(new_tlli, GPRS_RLCMAC_UL_TBF);
} else if (new_tlli && new_tlli != tlli()) {
LOGPTBFUL(this, LOGL_NOTICE,
- "TLLI mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
- rlc->tfi);
+ "Decoded TLLI=%08x mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
+ new_tlli, rlc->tfi);
m_window.invalidate_bsn(rdbi->bsn);
continue;
}