From: j-h.choi Date: Wed, 31 Aug 2022 23:16:53 +0000 (+0900) Subject: Modify log for profile data X-Git-Tag: accepted/tizen/unified/20220920.050137~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a8706bc0cdd19c5bc4047a0c35a77fd5c315ed1;p=platform%2Fcore%2Fdotnet%2Flauncher.git Modify log for profile data Change-Id: I498b7ce75a9e262b658303c2aee7e54815da7eca --- diff --git a/Managed/Tizen.Runtime/Profiler.cs b/Managed/Tizen.Runtime/Profiler.cs index e04e8a2..8d7d318 100644 --- a/Managed/Tizen.Runtime/Profiler.cs +++ b/Managed/Tizen.Runtime/Profiler.cs @@ -47,7 +47,7 @@ namespace Tizen.Runtime Environment.SetEnvironmentVariable("COMPlus_MultiCoreJitMinNumCpus", "1"); ProfileOptimization.SetProfileRoot(""); ProfileOptimization.StartProfile(profilePath); - Console.WriteLine("Completed loading of profile data to the candidate process"); + Console.WriteLine("MCJ playing start for candidate process"); } } catch (Exception e) diff --git a/NativeLauncher/launcher/lib/core_runtime.cc b/NativeLauncher/launcher/lib/core_runtime.cc index ee23fde..87d5919 100644 --- a/NativeLauncher/launcher/lib/core_runtime.cc +++ b/NativeLauncher/launcher/lib/core_runtime.cc @@ -582,7 +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); + _INFO("MCJ playing start for %s", appId); } else { setEnvironmentVariable("COMPlus_MultiCoreJitNoProfileGather", "0"); // stop profiling and write collected data after delay if env value is set. @@ -595,7 +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); + _INFO("MCJ recording start for %s", appId); } } free(localDataPath);