pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bsc/+/30402 )
Change subject: vty: Write amount of timeouts elapsed for a paging request ......................................................................
vty: Write amount of timeouts elapsed for a paging request
Related: SYS#6200 Change-Id: I55c84c0d20fc4120b7b4cdd06ed95a8847a6600a --- M src/osmo-bsc/bsc_vty.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified daniel: Looks good to me, but someone else must approve osmith: Looks good to me, approved laforge: Looks good to me, approved
diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c index 2be5932..cc9de74 100644 --- a/src/osmo-bsc/bsc_vty.c +++ b/src/osmo-bsc/bsc_vty.c @@ -1044,7 +1044,7 @@
static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag) { - vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE); + vty_out(vty, "Paging on BTS %u (%u request timeouts)%s", pag->bts->nr, pag->attempts, VTY_NEWLINE); bsc_subscr_dump_vty(vty, pag->bsub); }