Modify log for profile data
authorj-h.choi <j-h.choi@samsung.com>
Wed, 31 Aug 2022 23:16:53 +0000 (08:16 +0900)
committer조웅석/Common Platform Lab(SR)/삼성전자 <ws77.cho@samsung.com>
Thu, 1 Sep 2022 00:53:48 +0000 (09:53 +0900)
Change-Id: I498b7ce75a9e262b658303c2aee7e54815da7eca

Managed/Tizen.Runtime/Profiler.cs
NativeLauncher/launcher/lib/core_runtime.cc

index e04e8a2..8d7d318 100644 (file)
@@ -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)
index ee23fde..87d5919 100644 (file)
@@ -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);