Frames | No Frames |
Classes derived from java.util.logging.Handler | |
class | A ConsoleHandler publishes log records to
System.err .
|
class | A FileHandler publishes log records to a set of log
files. |
class | A MemoryHandler maintains a circular buffer of
log records.
|
class | A SocketHandler publishes log records to
a TCP/IP socket.
|
class | A StreamHandler publishes LogRecords to
a instances of java.io.OutputStream .
|
Constructors with parameter type java.util.logging.Handler | |
Constructs a MemoryHandler for keeping a circular
buffer of LogRecords, given some parameters. |
Methods with parameter type java.util.logging.Handler | |
void | Adds a handler to the set of handlers that get notified
when a log record is to be published.
|
String | Returns a string that handlers are supposed to emit before
the first log record. |
String | Returns a string that handlers are supposed to emit before
the first log record. |
String | Returns a string that handlers are supposed to emit after
the last log record. |
String | |
void | Removes a handler from the set of handlers that get notified
when a log record is to be published.
|
Methods with return type java.util.logging.Handler | |
Handler[] | Returns the handlers currently registered for this Logger.
|