Class Log
Definition
- Namespace:
- Tizen
- Assembly:
- Tizen.Log.dll
Provides methods to print log messages to the Tizen logging system.
public class Log
- Inheritance
-
objectLog
Methods
View SourceDebug(string, string, string, string, int)
Prints a log message with the DEBUG priority.
Declaration
public static void Debug(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type | Name | Description |
---|---|---|
string | tag | The tag name of the log message. |
string | message | The log message to print. |
string | file | The source file path of the caller function. This argument will be set automatically by the compiler. |
string | func | The function name of the caller function. This argument will be set automatically by the compiler. |
int | line | The line number of the calling position. This argument will be set automatically by the compiler. |
Error(string, string, string, string, int)
Prints a log message with the ERROR priority.
Declaration
public static void Error(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type | Name | Description |
---|---|---|
string | tag | The tag name of the log message. |
string | message | The log message to print. |
string | file | The source file path of the caller function. This argument will be set automatically by the compiler. |
string | func | The function name of the caller function. This argument will be set automatically by the compiler. |
int | line | The line number of the calling position. This argument will be set automatically by the compiler. |
Fatal(string, string, string, string, int)
Prints a log message with the FATAL priority.
Declaration
public static void Fatal(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type | Name | Description |
---|---|---|
string | tag | The tag name of the log message. |
string | message | The log message to print. |
string | file | The source file path of the caller function. This argument will be set automatically by the compiler. |
string | func | The function name of the caller function. This argument will be set automatically by the compiler. |
int | line | The line number of the calling position. This argument will be set automatically by the compiler. |
Info(string, string, string, string, int)
Prints a log message with the INFO priority.
Declaration
public static void Info(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type | Name | Description |
---|---|---|
string | tag | The tag name of the log message. |
string | message | The log message to print. |
string | file | The source file path of the caller function. This argument will be set automatically by the compiler. |
string | func | The function name of the caller function. This argument will be set automatically by the compiler. |
int | line | The line number of the calling position. This argument will be set automatically by the compiler. |
Verbose(string, string, string, string, int)
Prints a log message with the VERBOSE priority.
Declaration
public static void Verbose(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type | Name | Description |
---|---|---|
string | tag | The tag name of the log message. |
string | message | The log message to print. |
string | file | The source file path of the caller function. This argument will be set automatically by the compiler. |
string | func | The function name of the caller function. This argument will be set automatically by the compiler. |
int | line | The line number of the calling position. This argument will be set automatically by the compiler. |
Warn(string, string, string, string, int)
Prints a log message with the WARNING priority.
Declaration
public static void Warn(string tag, string message, string file = "", string func = "", int line = 0)
Parameters
Type | Name | Description |
---|---|---|
string | tag | The tag name of the log message. |
string | message | The log message to print. |
string | file | The source file path of the caller function. This argument will be set automatically by the compiler. |
string | func | The function name of the caller function. This argument will be set automatically by the compiler. |
int | line | The line number of the calling position. This argument will be set automatically by the compiler. |