From c1a246988d62586c0e5efcf0c74d7d88ed1d8b76 Mon Sep 17 00:00:00 2001 From: sunghyun kim Date: Tue, 21 Jul 2026 14:40:35 +0900 Subject: [PATCH] [NUI] Add diagnostic logs for application initialization delay --- src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs b/src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs index 48fa7ed7241..9bdbe367cc3 100755 --- a/src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs +++ b/src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs @@ -189,6 +189,7 @@ public void Run(string[] args) Tizen.Tracer.End(); Tizen.Tracer.Begin("[NUI] NUICorebackend Run(): args of main set, window type set"); + Tizen.Log.Info("NUI", "NUICoreBackend.Run(): begin to set main arguments"); if (Tizen.Applications.Application.Current?.ApplicationInfo != null) { args[0] = Tizen.Applications.Application.Current.ApplicationInfo.ExecutablePath; @@ -198,6 +199,7 @@ public void Run(string[] args) args[0] = this.GetType().Assembly.FullName.Replace(" ", ""); } + Tizen.Log.Info("NUI", "NUICoreBackend.Run(): main arguments set, begin to create application"); if (windowData != null) { bool enableUIThread = coreTask != null; @@ -236,6 +238,7 @@ public void Run(string[] args) } } } + Tizen.Log.Info("NUI", "NUICoreBackend.Run(): application created"); Tizen.Tracer.End(); Tizen.Tracer.Begin("[NUI] NUICorebackend Run(): add application related events");