public class Severity
extends Level
Modifier and Type | Field and Description |
---|---|
static Severity |
DEBUG
The
DEBUG severity designates
informational events that are most useful to debug an
application. |
static Severity |
ERROR
The
ERROR severity designates error events that
might still allow the application to continue running. |
static Severity |
FATAL
The
FATAL severity designates very severe error
events that will presumably lead the application to abort. |
static Severity |
INFO
The
INFO severity designates informational messages
that highlight the progress of the application at coarse-grained
level. |
static Severity |
WARN
The
WARN severity designates potentially harmful situations. |
Modifier and Type | Method and Description |
---|---|
static Severity |
toSeverity(java.lang.String level)
Convert the string passed as argument to a level.
|
public static final Severity FATAL
FATAL
severity designates very severe error
events that will presumably lead the application to abort.public static final Severity ERROR
ERROR
severity designates error events that
might still allow the application to continue running.public static final Severity WARN
WARN
severity designates potentially harmful situations.public static final Severity INFO
INFO
severity designates informational messages
that highlight the progress of the application at coarse-grained
level.public static final Severity DEBUG
DEBUG
severity designates
informational events that are most useful to debug an
application.