See: Description
| Interface | Description |
|---|---|
| Logger |
An object that provides logging operations, filtered by
Levels. |
| Class | Description |
|---|---|
| Log |
The factory that creates
Logger instances. |
| Enum | Description |
|---|---|
| Level |
An object used for identifying the severity of an event.
|
This package contains the classes related to logging service. The Log class
defines a set of static methods to log information, warnings, or errors. It is possible to use MessageFormat style in logged information.
Client code can use the logger to log application-level information if needed using the following code:
Log.trace("a trace message");
Log.debug("a debug message");
Log.info("an information message");
Log.warn("a warning message");
Log.error("an error message");
Copyright © 2017–2019 Atlanmod. All rights reserved.