From d61b07592af387b08dbb84424d43f10f570027de Mon Sep 17 00:00:00 2001 From: hyunho Date: Mon, 17 Feb 2020 18:06:44 +0900 Subject: [PATCH] Add log for app control event Change-Id: I039e1fa0327b54a99878fdb19cd46352d96f2677 Signed-off-by: hyunho --- src/base/widget_base.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/base/widget_base.c b/src/base/widget_base.c index c11f0af..17edb5d 100644 --- a/src/base/widget_base.c +++ b/src/base/widget_base.c @@ -525,6 +525,8 @@ static void __control_destroy(const char *class_id, const char *id, bundle *b) free(data->id); free(data); __check_empty_instance(); + aul_widget_write_log(LOG_TAG, + "[%s:%d] instance_id(%s)", __FUNCTION__, __LINE__, id); } static void __control_change_period(const char *class_id, const char *id, @@ -639,6 +641,7 @@ static int __multiwindow_control(bundle *b, void *data) return 0; } + LOGI("app control operation(%s)", operation); if (strcmp(operation, "create") == 0) __control_create(class_id, id, b); else if (strcmp(operation, "resize") == 0) -- 2.7.4