fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-pcu/+/29580 )
Change subject: bts_set_current_frame_number(): log TDMA FN of the next block ......................................................................
bts_set_current_frame_number(): log TDMA FN of the next block
Change-Id: Id28776fb5f0f85cd35d3918c79f8c8e338156aae --- M src/bts.cpp 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/80/29580/1
diff --git a/src/bts.cpp b/src/bts.cpp index e955687..9943527 100644 --- a/src/bts.cpp +++ b/src/bts.cpp @@ -343,7 +343,8 @@ * and start of another frame (every 3 blocks). */ if (fn != bts->cur_fn && bts->cur_fn != FN_UNSET && fn != fn_next_block(bts->cur_fn)) { LOGP(DRLCMAC, LOGL_NOTICE, - "Detected FN jump! %u -> %u\n", bts->cur_fn, fn); + "Detected FN jump! %u -> %u (next %u)\n", + bts->cur_fn, fn, fn_next_block(bts->cur_fn)); } bts->cur_fn = fn; }