Logging Framework API
| Interface | Description | |
|---|---|---|
| Appender | An Appender is a target for log output. | |
| LogFactory |
A LogFactory is responsible for creating and caching Logger instances
and offers configuration options for setting log levels and adding Appender instances. |
|
| Logger | All logging operations are done through this interface. |
| Class | Description | |
|---|---|---|
| LogContext | Central entry point to the Logging Framework. | |
| LogEvent |
Event that fires when a log method is invoked in a Logger instance. |
|
| LogLevel | Defines constants for the different log levels used in the framework. | |
| LogUtil | Static utility methods for formatting log output. |