From a306f5a54a7eb8bd6d765a8bcae1686168162f92 Mon Sep 17 00:00:00 2001 From: Hyotaek Shim Date: Fri, 30 Jun 2017 10:21:54 +0900 Subject: [PATCH] For internal dlog APIs, Verbose level log is disabled Change-Id: I401d5001cb3bf1bc0f1b59d56aaeb4348f116ae3 Signed-off-by: Hyotaek Shim --- src/Tizen.Log/Tizen/Log.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Tizen.Log/Tizen/Log.cs b/src/Tizen.Log/Tizen/Log.cs index 2c038ffb2..da76ef8c9 100644 --- a/src/Tizen.Log/Tizen/Log.cs +++ b/src/Tizen.Log/Tizen/Log.cs @@ -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) -- 2.34.1