neels has submitted this change. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/33331 )
(
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: RUA: log tweak ......................................................................
RUA: log tweak
I noticed that the log is awfully silent about disconnecting RUA, even with DEBUG turned on. It is an important item that should show in the logs.
Change-Id: I87592cbf197d5d3d2a22b04d9f6b64422af65ded --- M src/osmo-hnbgw/context_map_rua.c 1 file changed, 14 insertions(+), 0 deletions(-)
Approvals: pespin: Looks good to me, but someone else must approve neels: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/osmo-hnbgw/context_map_rua.c b/src/osmo-hnbgw/context_map_rua.c index 09c275d..6064b1c 100644 --- a/src/osmo-hnbgw/context_map_rua.c +++ b/src/osmo-hnbgw/context_map_rua.c @@ -262,6 +262,7 @@ .present = RUA_Cause_PR_radioNetwork, .choice.radioNetwork = RUA_CauseRadioNetwork_network_release, }; + LOGPFSML(fi, LOGL_INFO, "Tx RUA Disconnect\n"); if (rua_tx_disc(map->hnb_ctx, map->is_ps, map->rua_ctx_id, &rua_cause, NULL, 0)) LOGPFSML(fi, LOGL_ERROR, "Failed to send Disconnect to RUA\n"); }