From: azijurr Date: Wed, 22 Jan 2025 10:03:40 +0000 (+0600) Subject: Adding logs in OnAppSelect method. X-Git-Tag: accepted/tizen/unified/20250123.005015^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_unified;p=profile%2Fiot%2Fapps%2Fdotnet%2Ftaskbar.git Adding logs in OnAppSelect method. [Cause & Measure] OnAppSelect is called when we click an app on the TaskBar. So, this can be used to track the start of app launch time. Change-Id: Ib8da765f1d2858f235715788fd06b20a20d654a7 Signed-off-by: azijurr --- diff --git a/TaskBar/Models/AppInfoModel.cs b/TaskBar/Models/AppInfoModel.cs index dbaed87..6bbc9a3 100644 --- a/TaskBar/Models/AppInfoModel.cs +++ b/TaskBar/Models/AppInfoModel.cs @@ -21,7 +21,6 @@ using Tizen.Applications.NotificationEventListener; using Tizen.NUI.Binding; using TaskBar.Common; using TaskBar.Core; -using TaskBar.TextResources; namespace TaskBar.Models { @@ -112,6 +111,7 @@ namespace TaskBar.Models } else { + Tizen.Log.Debug(Resources.LogTag, $"APP_ICON_CLICKED for {ApplicationId}"); TaskBarAppsLauncher.LaunchApplication(ApplicationId); } if (Name == "notifications") diff --git a/packaging/org.tizen.taskbar-1.0.1.tpk b/packaging/org.tizen.taskbar-1.0.1.tpk index 3213123..9ef6647 100644 Binary files a/packaging/org.tizen.taskbar-1.0.1.tpk and b/packaging/org.tizen.taskbar-1.0.1.tpk differ