Add --rm-origin-after-ni option
[platform/core/dotnet/launcher.git] / NativeLauncher / launcher / lib / core_runtime.cc
index ee23fde..385bb60 100644 (file)
@@ -549,12 +549,12 @@ int CoreRuntime::launch(const char* appId, const char* root, const char* path, i
                _ERR("executable path is null");
                return -1;
        }
-
+#if 0
        if (!isFile(path)) {
                _ERR("File not exist : %s", path);
                return -1;
        }
-
+#endif
        // VD has their own signal handler.
        if (!pluginHasLogControl()) {
                registerSigHandler();
@@ -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);