dexter submitted this change.
mgw_fsm: use __func__ to mention function name in log line
Change-Id: I23050fc5f644340dfbd0323eef6309cff6fc4515
---
M src/osmo-hnbgw/mgw_fsm.c
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/src/osmo-hnbgw/mgw_fsm.c b/src/osmo-hnbgw/mgw_fsm.c
index eff8e90..2ecd7a5 100644
--- a/src/osmo-hnbgw/mgw_fsm.c
+++ b/src/osmo-hnbgw/mgw_fsm.c
@@ -738,8 +738,8 @@
* on the way between RANAP RAB Assignment Request and RANAP RAB Assignment Response. */
LOGP(DMGW, LOGL_ERROR,
- "mgw_fsm_handle_rab_ass_resp() rua_ctx_id=%d, no MGW fsm -- sending Iu-Release-Request!\n",
- map->rua_ctx_id);
+ "%s() rua_ctx_id=%d, no MGW fsm -- sending Iu-Release-Request!\n",
+ __func__, map->rua_ctx_id);
/* Send a release request, to make sure that the MSC is aware of the problem. */
tx_release_req(map);
To view, visit change 31993. To unsubscribe, or for help writing mail filters, visit settings.