Review LOG API cs files
authorEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Wed, 26 Jul 2017 06:02:51 +0000 (11:32 +0530)
committerEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Wed, 26 Jul 2017 08:44:49 +0000 (14:14 +0530)
Change-Id: I3b6a048dde590ee7a6b010f1839335e07ecbd29b

src/Tizen.Log/Tizen/Log.cs

index 65126c5..da673e7 100644 (file)
@@ -22,7 +22,7 @@ using System.ComponentModel;
 namespace Tizen
 {
     /// <summary>
-    /// Provides methods to print log messages to Tizen logging system.
+    /// Provides methods to print log messages to the Tizen logging system.
     /// </summary>
     public class Log
     {
@@ -33,8 +33,8 @@ namespace Tizen
         /// <param name="tag">The tag name of the log message.</param>
         /// <param name="message">The log message to print.</param>
         /// <param name="file">The source file path of the caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="func">The function name of caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="line">The line number of calling position. This argument will be set automatically by the compiler.</param>
+        /// <param name="func">The function name of the caller function. This argument will be set automatically by the compiler.</param>
+        /// <param name="line">The line number of the calling position. This argument will be set automatically by the compiler.</param>
         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
         /// <param name="tag">The tag name of the log message.</param>
         /// <param name="message">The log message to print.</param>
         /// <param name="file">The source file path of the caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="func">The function name of caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="line">The line number of calling position. This argument will be set automatically by the compiler.</param>
+        /// <param name="func">The function name of the caller function. This argument will be set automatically by the compiler.</param>
+        /// <param name="line">The line number of the calling position. This argument will be set automatically by the compiler.</param>
         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
         /// <param name="tag">The tag name of the log message.</param>
         /// <param name="message">The log message to print.</param>
         /// <param name="file">The source file path of the caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="func">The function name of caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="line">The line number of calling position. This argument will be set automatically by the compiler.</param>
+        /// <param name="func">The function name of the caller function. This argument will be set automatically by the compiler.</param>
+        /// <param name="line">The line number of the calling position. This argument will be set automatically by the compiler.</param>
         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
         /// <param name="tag">The tag name of the log message.</param>
         /// <param name="message">The log message to print.</param>
         /// <param name="file">The source file path of the caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="func">The function name of caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="line">The line number of calling position. This argument will be set automatically by the compiler.</param>
+        /// <param name="func">The function name of the caller function. This argument will be set automatically by the compiler.</param>
+        /// <param name="line">The line number of the calling position. This argument will be set automatically by the compiler.</param>
         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
         /// <param name="tag">The tag name of the log message.</param>
         /// <param name="message">The log message to print.</param>
         /// <param name="file">The source file path of the caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="func">The function name of caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="line">The line number of calling position. This argument will be set automatically by the compiler.</param>
+        /// <param name="func">The function name of the caller function. This argument will be set automatically by the compiler.</param>
+        /// <param name="line">The line number of the calling position. This argument will be set automatically by the compiler.</param>
         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
         /// <param name="tag">The tag name of the log message.</param>
         /// <param name="message">The log message to print.</param>
         /// <param name="file">The source file path of the caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="func">The function name of caller function. This argument will be set automatically by the compiler.</param>
-        /// <param name="line">The line number of calling position. This argument will be set automatically by the compiler.</param>
+        /// <param name="func">The function name of the caller function. This argument will be set automatically by the compiler.</param>
+        /// <param name="line">The line number of the calling position. This argument will be set automatically by the compiler.</param>
         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);