Logging helper classes¶
Introduction¶
The 'tinylog' package (see https://tinylog.org, is a very fast and small set of logger classes. Tinylog is extended with several helper classes to make logging more fine-grained and easier to control. The most important extension provided in the DJUTILS package is the so-called CategoryLogger. This is a logger that has categories that can be treated in different ways. An example of the use of a logger with a category, where we have categories Cat.BASE
and Cat.ADVANCED
:
CategoryLogger.filter(Cat.BASE).debug("Parameter {} initialized correctly", param1.toString());
CategoryLogger.filter(Cat.ADVANCED).error(exception, "Illegal argument: {}", arg);
In case a message should always be displayed, independent of the category or a category's settings, we can use the always() clause instead of the filter(category) clause:
CategoryLogger.always().info("Program started");
CategoryLogger.always().error(exception, "Program failed to initialize. Command was: {}", command);
LogCategory¶
Categories should be of the type LogCategory
. An example of the definition of LogCategories for the DSOL project is given below. The comments have been left out.
public final class Cat
{
public static final LogCategory DSOL = new LogCategory("DSOL");
public static final LogCategory NAMING = new LogCategory("NAMING");
public static final LogCategory EVENT = new LogCategory("ROAD");
public static final LogCategory SWING = new LogCategory("SWING");
public static final LogCategory WEB = new LogCategory("WEB");
}
Settings of the loggers¶
The CategoryLogger
has several methods to add or remove LogCategories for which logging needs to be done. Only LogCategories that have been registered will be logged.
CategoryLogger.addLogCategory(logCategory);
CategoryLogger.removeLogCategory(logCategory);
The log level for all category loggers can be set with the CategoryLogger.setAllLogLevel(level)
method. The following log levels exist:
- TRACE: Output all log entries. The trace(...) method outputs on the TRACE level.
- DEBUG: Output all log entries but trace log entries. The debug(...) method outputs on the DEBUG level.
- INFO: Output all log entries but trace and debug log entries (default). The info(...) method outputs on the INFO level.
- WARNING: Output error and warning log entries. The warn(...) method outputs on the WARNING level.
- ERROR: Output only error log entries. The error(...) method outputs on the ERROR level.
- OFF: Disable logging (no log entries will be output)
The formatting of the log message for all category loggers can be set with the CategoryLogger.setLogMessageFormat(formatString)
method. An example of a formatString is:
CategoryLogger.setLogMessageFormat("{class_name}.{method}:{line} {message|indent=4}");
which means that the class name, method and line number are logged, followed by the message, with an indentation of four spaces in case it runs over more than one line. The most important formatting components are:
- {class} Fully-qualified class name where the logging request is issued
- {class_name} Class name (without package) where the logging request is issued
- {date} Date and time of the logging request, e.g. {date:yyyy-MM-dd HH:mm:ss} [SimpleDateFormat]
- {level} Logging level of the created log entry
- {line} Line number in the Java source code from where the logging request is issued
- {message} Associated message of the created log entry
- {method} Method name from where the logging request is issued
- {package} Package where the logging request is issued
For a more complete list, see also https://tinylog.org/configuration.
Logging¶
Each of the log methods trace(...), debug(...), info(...), warn(...), and error(...) has several configurations that can be used. Below, the definitions for info(...) are given, but these are the same for each of the other methods. The same holds for the always() clause, which can of course be replaced by filter(logCategory) clause.
Method call | Explanation |
---|---|
CategoryLogger.always().info(String); |
message = string |
CategoryLogger.always().info(Object); |
message = object.toString() |
CategoryLogger.always().info(String, Object...); |
message = string; each of the {} clauses in the string is filled with the corresponding object.toString() in the array |
CategoryLogger.always().info(Supplier); |
the supplier functional interface (see java.util.function.Supplier for more information) generates the message |
CategoryLogger.always().info(String, Supplier...); |
message = string; each of the {} clauses in the string is filled with a calculated value from the Supplier functional interfaces. |
CategoryLogger.always().info(Throwable); |
message = throwable.getMessage() . Stack trace can be shown if that is part of the message. |
CategoryLogger.always().info(Throwable, String); |
message = string. Stack trace can be shown if that is part of the message. |
CategoryLogger.always().info(Throwable, Object); |
message = object.toString() . Stack trace can be shown if that is part of the message. |
CategoryLogger.always().info(Throwable, String, Object...); |
message = string; each of the {} clauses in the string is filled with the corresponding object.toString() in the array. Stack trace can be shown if that is part of the message. |
CategoryLogger.always().info(Throwable, Supplier) ; |
The message is generated by the supplier functional interface. Stack trace can be shown if that is part of the message. |
CategoryLogger.always().info(Throwable, String, Supplier...); |
message = string; each of the {} clauses in the string is filled with a calculated value from the Supplier functional interfaces. Stack trace can be shown if that is part of the message. |