|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Level | |
|---|---|
| com.sodius.mdw.core.util.log | Defines the logging framework, which enables to report errors and warnings, as well as debugging information. |
| Uses of Level in com.sodius.mdw.core.util.log |
|---|
| Fields in com.sodius.mdw.core.util.log declared as Level | |
|---|---|
static Level |
Level.DEBUG
DEBUG level is used to assist in debugging problems that may be associated with
particular configurations. |
static Level |
Level.ERROR
ERROR level should describe events that are of considerable importance and which will prevent normal program execution. |
static Level |
Level.INFO
INFO level should only be used for reasonably significant messages that
will make sense to end users and system admins. |
static Level |
Level.WARNING
WARNING level should describe events that will be of interest to end users or system managers,
or which indicate potential problems. |
| Methods in com.sodius.mdw.core.util.log that return Level | |
|---|---|
Level |
LogRecorder.Record.getLevel()
Returns the level of the logged information. |
Level |
LoggerSet.getLevel()
|
Level |
Logger.getLevel()
Get the log Level that has been specified for this logger. |
Level |
AbstractLogger.getLevel()
|
| Methods in com.sodius.mdw.core.util.log with parameters of type Level | |
|---|---|
int |
Level.compareTo(Level level)
Compares this level with the specified level for order. |
boolean |
LoggerSet.isLoggable(Level level)
|
boolean |
Logger.isLoggable(Level level)
Check if a message of the given level would actually be logged by this logger. |
boolean |
AbstractLogger.isLoggable(Level level)
|
protected void |
SystemStreamLogger.log(Level level,
Object message,
Throwable error)
Logs the specified message and error to System.out or System.err. |
protected void |
LogRecorder.log(Level level,
Object message,
Throwable error)
Creates a record with the specified log information. |
protected void |
FileLogger.log(Level level,
Object message,
Throwable error)
Appends the specified message and error to the underlying file. |
protected abstract void |
AbstractLogger.log(Level level,
Object message,
Throwable error)
Ask to log the specified message and error. |
void |
LoggerSet.setLevel(Level level)
|
void |
Logger.setLevel(Level level)
Set the log level specifying which message levels will be logged by this logger. |
void |
AbstractLogger.setLevel(Level level)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||