From: j-h.choi Date: Tue, 30 Aug 2022 23:28:58 +0000 (+0900) Subject: Add log for profile data when the app runs X-Git-Tag: accepted/tizen/unified/20220920.050137~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=4cd7db4adf5ede5acb3b0af94c0e1f953bf7da77;p=platform%2Fcore%2Fdotnet%2Flauncher.git Add log for profile data when the app runs Change-Id: Id3f6eb5559ea5c6da4efecc43315df8f1897a296 --- diff --git a/NativeLauncher/launcher/lib/core_runtime.cc b/NativeLauncher/launcher/lib/core_runtime.cc index 4fb9562..ee23fde 100644 --- a/NativeLauncher/launcher/lib/core_runtime.cc +++ b/NativeLauncher/launcher/lib/core_runtime.cc @@ -582,6 +582,7 @@ int CoreRuntime::launch(const char* appId, const char* root, const char* path, i if (exist(multiCoreJitProfile)) { setEnvironmentVariable("COMPlus_MultiCoreJitNoProfileGather", "1"); + _INFO("Completed loading of profile data for the %s", appId); } else { setEnvironmentVariable("COMPlus_MultiCoreJitNoProfileGather", "0"); // stop profiling and write collected data after delay if env value is set. @@ -594,6 +595,7 @@ int CoreRuntime::launch(const char* appId, const char* root, const char* path, i stopProfileAfterDelay(delay); } } + _INFO("Create the profile data for the %s", appId); } } free(localDataPath);