|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.sun.star.util.logging.Level
The Level class defines a set of standard logging levels that can be used to control logging output. The logging Level objects are ordered and are specified by ordered integers. Enabling logging at a given level also enables logging at all higher levels.
Clients should normally use the predefined Level constants such as Level.SEVERE.
The levels in descending order are:
Field Summary | |
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. |
Constructor Summary | |
protected |
Level(java.lang.String name,
int value)
|
Method Summary | |
int |
intValue()
Get the integer value for this level. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
Field Detail |
public static final Level OFF
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.
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.
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.
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.
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.
public static final Level FINER
public static final Level FINEST
public static final Level ALL
Constructor Detail |
protected Level(java.lang.String name, int value)
Method Detail |
public final java.lang.String toString()
public final int intValue()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |