From 68a796ebc51070c299a3dc310059b3c8bcd1344f Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 13 Apr 2021 17:36:49 +0200 Subject: [PATCH] iu_client: Log event sent to upper layer callback Change-Id: I2233df2b09ae46f28dd99d7540d71fee8e47b6ff --- src/iu_client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/iu_client.c b/src/iu_client.c index 4b0acb01..06285ecd 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); }