From 3570721dbbce6d703426f33396acc4a31462d448 Mon Sep 17 00:00:00 2001 From: Editor Lionbridge Date: Wed, 26 Jul 2017 11:32:51 +0530 Subject: [PATCH] Review LOG API cs files Change-Id: I3b6a048dde590ee7a6b010f1839335e07ecbd29b --- src/Tizen.Log/Tizen/Log.cs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/Tizen.Log/Tizen/Log.cs b/src/Tizen.Log/Tizen/Log.cs index 65126c5..da673e7 100644 --- a/src/Tizen.Log/Tizen/Log.cs +++ b/src/Tizen.Log/Tizen/Log.cs @@ -22,7 +22,7 @@ using System.ComponentModel; namespace Tizen { /// - /// Provides methods to print log messages to Tizen logging system. + /// Provides methods to print log messages to the Tizen logging system. /// public class Log { @@ -33,8 +33,8 @@ namespace Tizen /// The tag name of the log message. /// The log message to print. /// The source file path of the caller function. This argument will be set automatically by the compiler. - /// The function name of caller function. This argument will be set automatically by the compiler. - /// The line number of calling position. This argument will be set automatically by the compiler. + /// The function name of the caller function. This argument will be set automatically by the compiler. + /// The line number of the calling position. This argument will be set automatically by the compiler. public static void Verbose(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0) { Print(Interop.Dlog.LogPriority.DLOG_VERBOSE, tag, message, file, func, line); @@ -47,8 +47,8 @@ namespace Tizen /// The tag name of the log message. /// The log message to print. /// The source file path of the caller function. This argument will be set automatically by the compiler. - /// The function name of caller function. This argument will be set automatically by the compiler. - /// The line number of calling position. This argument will be set automatically by the compiler. + /// The function name of the caller function. This argument will be set automatically by the compiler. + /// The line number of the calling position. This argument will be set automatically by the compiler. public static void Debug(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0) { Print(Interop.Dlog.LogPriority.DLOG_DEBUG, tag, message, file, func, line); @@ -61,8 +61,8 @@ namespace Tizen /// The tag name of the log message. /// The log message to print. /// The source file path of the caller function. This argument will be set automatically by the compiler. - /// The function name of caller function. This argument will be set automatically by the compiler. - /// The line number of calling position. This argument will be set automatically by the compiler. + /// The function name of the caller function. This argument will be set automatically by the compiler. + /// The line number of the calling position. This argument will be set automatically by the compiler. public static void Info(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0) { Print(Interop.Dlog.LogPriority.DLOG_INFO, tag, message, file, func, line); @@ -75,8 +75,8 @@ namespace Tizen /// The tag name of the log message. /// The log message to print. /// The source file path of the caller function. This argument will be set automatically by the compiler. - /// The function name of caller function. This argument will be set automatically by the compiler. - /// The line number of calling position. This argument will be set automatically by the compiler. + /// The function name of the caller function. This argument will be set automatically by the compiler. + /// The line number of the calling position. This argument will be set automatically by the compiler. public static void Warn(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0) { Print(Interop.Dlog.LogPriority.DLOG_WARN, tag, message, file, func, line); @@ -89,8 +89,8 @@ namespace Tizen /// The tag name of the log message. /// The log message to print. /// The source file path of the caller function. This argument will be set automatically by the compiler. - /// The function name of caller function. This argument will be set automatically by the compiler. - /// The line number of calling position. This argument will be set automatically by the compiler. + /// The function name of the caller function. This argument will be set automatically by the compiler. + /// The line number of the calling position. This argument will be set automatically by the compiler. public static void Error(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0) { Print(Interop.Dlog.LogPriority.DLOG_ERROR, tag, message, file, func, line); @@ -103,8 +103,8 @@ namespace Tizen /// The tag name of the log message. /// The log message to print. /// The source file path of the caller function. This argument will be set automatically by the compiler. - /// The function name of caller function. This argument will be set automatically by the compiler. - /// The line number of calling position. This argument will be set automatically by the compiler. + /// The function name of the caller function. This argument will be set automatically by the compiler. + /// The line number of the calling position. This argument will be set automatically by the compiler. public static void Fatal(string tag, string message, [CallerFilePath] string file = "", [CallerMemberName] string func = "", [CallerLineNumber] int line = 0) { Print(Interop.Dlog.LogPriority.DLOG_FATAL, tag, message, file, func, line); -- 2.7.4