Integrate the log tag with "DOTNET_LAUNCHER" 58/122058/5
authorJongHeon Choi <j-h.choi@samsung.com>
Thu, 30 Mar 2017 04:58:25 +0000 (13:58 +0900)
committerJongHeon Choi <j-h.choi@samsung.com>
Tue, 4 Apr 2017 23:20:01 +0000 (08:20 +0900)
Change-Id: Ifdfbbbc991f2b554ead66bb28e9c647ae3ddfcca

NativeLauncher/inc/log.h
Tizen.Runtime/Tizen.Runtime/Log.cs

index 25b3f83..5769204 100644 (file)
@@ -29,7 +29,7 @@
 #ifdef  LOG_TAG
 #undef  LOG_TAG
 #endif
-#define LOG_TAG "NETCORE_LAUNCHER"
+#define LOG_TAG "DOTNET_LAUNCHER"
 
 #ifndef _ERR
 #define _ERR(fmt, args...) LOGE(fmt "\n", ##args)
index f0fd067..70d5b21 100644 (file)
@@ -52,7 +52,7 @@ namespace Tizen.Runtime
     internal static class ALog
     {
         const string Library = "libdlog.so.0";
-        const string TAG = "Tizen.Runtime";
+        const string TAG = "DOTNET_LAUNCHER";
 
         public static void Debug(string message,
                 [CallerFilePath] string file = "",