fixeria has submitted this change. ( https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/39555?usp=email )
Change subject: erab_fsm: pretty-print U2CM and U2AM during MODIFY Req/Ind ......................................................................
erab_fsm: pretty-print U2CM and U2AM during MODIFY Req/Ind
Change-Id: I2a8bac479bdf8076fdb8b379361aff7b549babcd Related: SYS#7308 --- M src/erab_fsm.erl 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve pespin: Looks good to me, approved
diff --git a/src/erab_fsm.erl b/src/erab_fsm.erl index c0fbbae..a941152 100644 --- a/src/erab_fsm.erl +++ b/src/erab_fsm.erl @@ -390,7 +390,7 @@ erab_setup({call, From}, {erab_modify_req, U2CM}, #erab_state{} = S) -> - ?LOG_DEBUG("Rx E-RAB MODIFY Req (U2CM ~p)", [U2CM]), + ?LOG_DEBUG("Rx E-RAB MODIFY Req (U2CM ~p)", [pp(U2CM)]), {next_state, session_modify, S#erab_state{mod_kind = modify_req, from = From, @@ -425,7 +425,7 @@ erab_setup({call, From}, {erab_modify_ind, U2AM}, #erab_state{} = S) -> - ?LOG_DEBUG("Rx E-RAB MODIFY Ind (U2AM ~p)", [U2AM]), + ?LOG_DEBUG("Rx E-RAB MODIFY Ind (U2AM ~p)", [pp(U2AM)]), {next_state, session_modify, S#erab_state{mod_kind = modify_ind, from = From,