Log levels for EclipseLink logging.
The EclipseLink logging levels available are:
Logging levels
ALL
= 0
This level currently logs at the same level as FINEST.
FINEST
= 1
This level enables logging of more debugging information than the FINER setting, such as a very detailed
information about certain features (for example, sequencing). You may want to use this log level during
debugging and testing, but not at production.
FINER
= 2
This level enables logging of more debugging information than the FINE setting. For example, the transaction
information is logged at this level. You may want to use this log level during debugging and testing,
but not at production.
FINE
= 3
This level enables logging of the first level of the debugging information and SQL. You may want to use
this log level during debugging and testing, but not at production.
CONFIG
= 4
This level enables logging of such configuration details as your database login information and some metadata
information. You may want to use the CONFIG log level at deployment time.
INFO
= 5
This level enables the standard output. The contents of this output is very limited. It is the default
logging level if a logging level is not set.
WARNING
= 6
This level enables logging of issues that have a potential to cause problems. For example, a setting that
is picked by the application and not by the user.
SEVERE
= 7
This level enables reporting of failure cases only. Usually, if the failure occurs, the application
stops.
OFF
= 8
This setting disables the generation of the log output. You may want to set logging to OFF during production
to avoid the overhead of logging.
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.
LogLevel object holding the value represented by the string argument or null when
there exists no corresponding LogLevel object to provided argument value.
fallBack - LogLevel object to return on ID lookup failure.
Returns:
LogLevel object holding the value represented by the string argument or fallBack when
there exists no corresponding LogLevel object to provided argument value.