Class Log

Definition

Namespace:
Tizen
Assembly:
Tizen.Log.dll
API Level:
3

Provides methods to print log messages to the Tizen logging system. Depending on products, some priorities (e.g., Vervose and Debug) can be disabled by default to prevent too many logs.

C#
Copy
public class Log
Inheritance
System.Object
Log

Methods

View Source

Debug(String, String, String, String, Int32)

Prints a log message with the DEBUG priority.

Declaration
C#
Copy
public static void Debug(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type Name Description
System.String tag

The tag name of the log message.

System.String message

The log message to print.

System.String file

The source file path of the caller function. This argument will be set automatically by the compiler.

System.String func

The function name of the caller function. This argument will be set automatically by the compiler.

Int32 line

The line number of the calling position. This argument will be set automatically by the compiler.

API Level: 3
View Source

Error(String, String, String, String, Int32)

Prints a log message with the ERROR priority.

Declaration
C#
Copy
public static void Error(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type Name Description
System.String tag

The tag name of the log message.

System.String message

The log message to print.

System.String file

The source file path of the caller function. This argument will be set automatically by the compiler.

System.String func

The function name of the caller function. This argument will be set automatically by the compiler.

Int32 line

The line number of the calling position. This argument will be set automatically by the compiler.

API Level: 3
View Source

Fatal(String, String, String, String, Int32)

Prints a log message with the FATAL priority.

Declaration
C#
Copy
public static void Fatal(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type Name Description
System.String tag

The tag name of the log message.

System.String message

The log message to print.

System.String file

The source file path of the caller function. This argument will be set automatically by the compiler.

System.String func

The function name of the caller function. This argument will be set automatically by the compiler.

Int32 line

The line number of the calling position. This argument will be set automatically by the compiler.

API Level: 3
View Source

Info(String, String, String, String, Int32)

Prints a log message with the INFO priority.

Declaration
C#
Copy
public static void Info(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type Name Description
System.String tag

The tag name of the log message.

System.String message

The log message to print.

System.String file

The source file path of the caller function. This argument will be set automatically by the compiler.

System.String func

The function name of the caller function. This argument will be set automatically by the compiler.

Int32 line

The line number of the calling position. This argument will be set automatically by the compiler.

API Level: 3
View Source

Verbose(String, String, String, String, Int32)

Prints a log message with the VERBOSE priority.

Declaration
C#
Copy
public static void Verbose(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type Name Description
System.String tag

The tag name of the log message.

System.String message

The log message to print.

System.String file

The source file path of the caller function. This argument will be set automatically by the compiler.

System.String func

The function name of the caller function. This argument will be set automatically by the compiler.

Int32 line

The line number of the calling position. This argument will be set automatically by the compiler.

API Level: 3
View Source

Warn(String, String, String, String, Int32)

Prints a log message with the WARNING priority.

Declaration
C#
Copy
public static void Warn(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type Name Description
System.String tag

The tag name of the log message.

System.String message

The log message to print.

System.String file

The source file path of the caller function. This argument will be set automatically by the compiler.

System.String func

The function name of the caller function. This argument will be set automatically by the compiler.

Int32 line

The line number of the calling position. This argument will be set automatically by the compiler.

API Level: 3