public class Level extends Object
Clients should normally used the predefined Level constants provided by this class. These levels are, from highest to lowest:
Modifier and Type | Field and Description |
---|---|
static Level |
ALL
ALL indicates that all messages should be logged.
|
static Level |
CONFIG
CONFIG is a message level for static configuration messages.
|
static Level |
FINE
FINE is a message level providing tracing information.
|
static Level |
FINER
FINER indicates a fairly detailed tracing message.
|
static Level |
FINEST
FINEST indicates a highly detailed tracing message.
|
static Level |
INFO
INFO is a message level for informational messages.
|
static Level |
OFF
OFF is a special level that can be used to turn off logging.
|
static Level |
SEVERE
SEVERE is a message level indicating a serious failure.
|
static Level |
WARNING
WARNING is a message level indicating a potential problem.
|
Modifier | Constructor and Description |
---|---|
protected |
Level(String name,
int value)
Creates a named Level with the given integer value.
|
Modifier and Type | Method and Description |
---|---|
String |
getName()
Return the name of the level.
|
int |
intValue()
Return the integer value of the level.
|
String |
toString()
Returns a string representation of the object.
|
public static final Level ALL
Integer.MIN_VALUE
.public static final Level CONFIG
CONFIG messages are intended to provide a variety of static configuration information, to assist in debugging problems that may be associated with particular configurations. For example, CONFIG message might include the CPU type, the graphics depth, the GUI look-and-feel, etc. This level is initialized to .
public static final Level FINE
All of FINE, FINER, and FINEST are intended for relatively detailed tracing. The exact meaning of the three levels will vary between subsystems, but in general, FINEST should be used for the most voluminous detailed output, FINER for somewhat less detailed output, and FINE for the lowest volume (and most important) messages.
In general the FINE level should be used for information that will be broadly interesting to developers who do not have a specialized interest in the specific subsystem.
FINE messages might include things like minor (recoverable) failures. Issues indicating potential performance problems are also worth logging as FINE. This level is initialized to .
public static final Level FINER
public static final Level FINEST
public static final Level INFO
Typically INFO messages will be written to the console or its equivalent. So the INFO level should only be used for reasonably significant messages that will make sense to end users and system admins. This level is initialized to .
public static final Level OFF
Integer.MAX_VALUE
.public static final Level SEVERE
In general SEVERE messages should describe events that are of considerable importance and which will prevent normal program execution. They should be reasonably intelligible to end users and to system administrators. This level is initialized to .
public static final Level WARNING
In general WARNING messages should describe events that will be of interest to end users or system managers, or which indicate potential problems. This level is initialized to .
protected Level(String name, int value)
name
- the name of the level. For example "SEVERE".value
- must be one the value above.public String getName()
public int intValue()
public String toString()
Object
toString
method returns a
string that "textually represents" this object. The result should be a concise but informative
representation that is easy for a person to read. It is recommended that all subclasses override
this method.
The toString
method for class Object
returns a string consisting of the name of
the class of which the object is an instance, the at-sign character `@
', and the unsigned
hexadecimal representation of the hash code of the object. In other words, this method returns a
string equal to the value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())