The Logging subsystem writes messages to the log. More...
Static Public Member Functions | |
| static void | debug (String message) |
| Logs a message to the Debug category with an Info level. | |
| static void | error (String message) |
| Logs a message to the Generic category with an Error level. | |
| static void | info (String message) |
| Logs a message to the Generic category with an Info level. | |
| static void | warning (String message) |
| Logs a message to the Generic category with a Warning level. | |
The Logging subsystem writes messages to the log.
Use log levels to classify log messages based on the severity of the information that they contain. For example, to log critical problems, which occur during application execution, use the error log level com.rightware.kanzi.Log#error(String). To log normal application activity, use the info log level com.rightware.kanzi.Log#info(String).
Logs a message to the Debug category with an Info level.
| message | The message to log. |
Logs a message to the Generic category with an Error level.
| message | The message to log. |
Logs a message to the Generic category with an Info level.
| message | The message to log. |