GNU Classpath (0.95) | |
Frames | No Frames |
Constructors with parameter type java.util.logging.Level | |
Constructs a LogRecord given a severity level and
an unlocalized message text. | |
Constructs a MemoryHandler for keeping a circular
buffer of LogRecords, given some parameters. |
Fields of type java.util.logging.Level | |
Level | The ALL level is used as a threshold for filtering
log records, meaning that every message should be logged.
|
Level | Log records whose level is CONFIG are used for
describing the static configuration, for example the windowing
environment, the operating system version, etc.
|
Level | Log records whose level is FINE are typically used
for messages that are relevant for developers using
the component generating log messages. |
Level | Log records whose level is FINER are intended for
rather detailed tracing, for example entering a method, returning
from a method, or throwing an exception.
|
Level | Log records whose level is FINEST are used for
highly detailed tracing, for example to indicate that a certain
point inside the body of a method has been reached.
|
Level | Log records whose level is INFO are used in purely
informational situations that do not constitute serious errors or
potential problems. |
Level | The OFF level is used as a threshold for filtering
log records, meaning that no message should be logged.
|
Level | Log records whose level is SEVERE indicate a serious
failure that prevents normal program execution. |
Level | Log records whose level is WARNING indicate a
potential problem that does not prevent normal program execution.
|
Methods with parameter type java.util.logging.Level | |
boolean | Returns whether or not a message of the specified level
would be logged by this logger.
|
void | |
void | |
void | |
void | |
void | |
void | |
void | |
void | |
void | |
void | |
void | |
void | |
void | Sets the severity level threshold for this Handler .
|
void | Sets the severity level threshold for this Handler .
|
void | Sets the severity level of this LogRecord to a new
value.
|
void | Sets the push level threshold for this Handler .
|
Methods with return type java.util.logging.Level | |
Level | Returns the severity level threshold for this Handler
All log records with a lower severity level will be discarded;
a log record of the same or a higher level will be published
unless an installed Filter decides to discard it.
|
Level | Returns the severity level threshold for this Handler .
|
Level | Returns the level of the LogRecord.
|
Level | Returns the push level threshold for this Handler .
|
Level | Returns one of the standard Levels given either its name or its
integer value. |
GNU Classpath (0.95) |