From 5a8706bc0cdd19c5bc4047a0c35a77fd5c315ed1 Mon Sep 17 00:00:00 2001 From: "j-h.choi" Date: Thu, 1 Sep 2022 08:16:53 +0900 Subject: [PATCH] Modify log for profile data Change-Id: I498b7ce75a9e262b658303c2aee7e54815da7eca --- Managed/Tizen.Runtime/Profiler.cs | 2 +- NativeLauncher/launcher/lib/core_runtime.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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); -- 2.7.4