Class Log
Definition
- Namespace:
- Tizen
- Assembly:
- Tizen.Log.dll
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#Copypublic class Log
- Inheritance
-
objectLog
Methods
Debug(string, string, string, string, int)
Prints a regular log message with the DEBUG priority.
Declaration
C#Copypublic 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 regular log message with the ERROR priority.
Declaration
C#Copypublic 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 regular log message with the FATAL priority.
Declaration
C#Copypublic 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 regular log message with the INFO priority.
Declaration
C#Copypublic 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 regular log message with the VERBOSE priority.
Declaration
C#Copypublic 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 regular log message with the WARNING priority.
Declaration
C#Copypublic 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. |