Default logger implementation.
A Logger object is used to log messages for a specific system or application component.
Defined in: Logger.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
| Field Attributes | Field Name and Description |
|---|---|
| <static> |
jls.lang.Logger.DEBUG
The debug log level.
|
| <static> |
jls.lang.Logger.ERROR
The error log level.
|
| <static> |
jls.lang.Logger.FINE
The fine log level.
|
| <static> |
jls.lang.Logger.FINEST
The finest log level.
|
| <static> |
jls.lang.Logger.INFO
The info log level.
|
| <static> |
jls.lang.Logger.TRACE
The trace log level.
|
| <static> |
jls.lang.Logger.WARN
The warn log level.
|
| Method Attributes | Method Name and Description |
|---|---|
|
debug(msg)
Logs a specified message using the debug level.
|
|
|
error(msg)
Logs a specified message using the error level.
|
|
|
info(msg)
Logs a specified message using the info level.
|
|
|
Tells if the log level debug is enabled.
|
|
|
Tells if the log level trace is enabled.
|
|
|
trace(msg)
Logs a specified message using the trace level.
|
|
|
warn(msg)
Logs a specified message using the warn level.
|