aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-04-13 17:36:49 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-04-13 17:36:49 +0200
commit68a796ebc51070c299a3dc310059b3c8bcd1344f (patch)
tree80a058ef10a05c82995ee4addff671ba6e4c4dcd
parent09d635ce9b3340d99ae629f9a25c93ee256105dc (diff)
iu_client: Log event sent to upper layer callback
-rw-r--r--src/iu_client.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/iu_client.c b/src/iu_client.c
index 4b0acb0..06285ec 100644
--- a/src/iu_client.c
+++ b/src/iu_client.c
@@ -119,6 +119,8 @@ static int global_iu_event(struct ranap_ue_conn_ctx *ue_ctx,
if (!ue_ctx->notification)
return 0;
+ LOGPIU(LOGL_DEBUG, "Submit Iu event to upper layer: %s\n", ranap_iu_event_type_str(type));
+
return global_iu_event_cb(ue_ctx, type, data);
}