For internal dlog APIs, Verbose level log is disabled
authorHyotaek Shim <hyotaek.shim@samsung.com>
Fri, 30 Jun 2017 01:21:54 +0000 (10:21 +0900)
committerHyotaek Shim <hyotaek.shim@samsung.com>
Fri, 30 Jun 2017 01:21:54 +0000 (10:21 +0900)
Change-Id: I401d5001cb3bf1bc0f1b59d56aaeb4348f116ae3
Signed-off-by: Hyotaek Shim <hyotaek.shim@samsung.com>
src/Tizen.Log/Tizen/Log.cs

index 2c038ff..da76ef8 100644 (file)
@@ -123,7 +123,8 @@ namespace Tizen
     {
         public static void Verbose(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0)
         {
-            Print(Interop.Dlog.LogID.LOG_ID_MAIN, Interop.Dlog.LogPriority.DLOG_VERBOSE, tag, message, file, func, line);
+           // For internal dlog APIs, Verbose level log is disabled
+            // Print(Interop.Dlog.LogID.LOG_ID_MAIN, Interop.Dlog.LogPriority.DLOG_VERBOSE, tag, message, file, func, line);
         }
 
         public static void Debug(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0)
@@ -170,7 +171,8 @@ namespace Tizen
     {
         public static void Verbose(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0)
         {
-            Print(Interop.Dlog.LogID.LOG_ID_MAIN, Interop.Dlog.LogPriority.DLOG_VERBOSE, tag, message, file, func, line);
+            // For internal dlog APIs, Verbose level log is disabled
+            // Print(Interop.Dlog.LogID.LOG_ID_MAIN, Interop.Dlog.LogPriority.DLOG_VERBOSE, tag, message, file, func, line);
         }
 
         public static void Debug(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0)