summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwoongsuk cho <ws77.cho@samsung.com>2017-04-06 22:17:56 -0700
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2017-04-06 22:17:56 -0700
commit10bd83a22960258191f76ceb20c72246e5a78878 (patch)
treeeb7f926999bd1784241bca0932bdbbfac141dbcc
parentbd5c5f3430720a35e67306bab83e9903bb4803de (diff)
parent6944dd41419858aa2ebd39e7834298d8ac06ee14 (diff)
downloadlauncher-10bd83a22960258191f76ceb20c72246e5a78878.tar.gz
launcher-10bd83a22960258191f76ceb20c72246e5a78878.tar.bz2
launcher-10bd83a22960258191f76ceb20c72246e5a78878.zip
Merge "Integrate the log tag with "DOTNET_LAUNCHER"" into tizen
-rw-r--r--NativeLauncher/inc/log.h2
-rw-r--r--Tizen.Runtime/Tizen.Runtime/Log.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/NativeLauncher/inc/log.h b/NativeLauncher/inc/log.h
index 25b3f83..5769204 100644
--- a/NativeLauncher/inc/log.h
+++ b/NativeLauncher/inc/log.h
@@ -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)
diff --git a/Tizen.Runtime/Tizen.Runtime/Log.cs b/Tizen.Runtime/Tizen.Runtime/Log.cs
index f0fd067..70d5b21 100644
--- a/Tizen.Runtime/Tizen.Runtime/Log.cs
+++ b/Tizen.Runtime/Tizen.Runtime/Log.cs
@@ -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 = "",