| Package | Description |
|---|---|
| java.util.logging |
Provides the classes and interfaces of the Java
TM 2 platform's core logging facilities.
|
| Modifier and Type | Method and Description |
|---|---|
String |
XMLFormatter.format(LogRecord
Format the given message to XML.
|
String |
SimpleFormatter.format(LogRecord
Format the given LogRecord.
|
abstract String |
Formatter.format(LogRecord
Format the given log record and return the formatted string.
|
String |
Formatter.formatMessage(LogRecord
Localize and format the message string from a log record.
|
boolean |
Handler.isLoggable(LogRecord
Check if this
Handler would actually log a given
LogRecord.
|
boolean |
Filter.isLoggable(LogRecord
Check if a given log record should be published.
|
boolean |
MemoryHandler.isLoggable(LogRecord
Check if this
Handler would actually log a given
LogRecord into its internal buffer.
|
boolean |
StreamHandler.isLoggable(LogRecord
Check if this
Handler would actually log a given
LogRecord.
|
void |
Logger.log(LogRecord
Log a LogRecord.
|
abstract void |
Handler.publish(LogRecord
Publish a
LogRecord.
|
void |
MemoryHandler.publish(LogRecord
Store a
LogRecord in an internal buffer.
|
void |
FileHandler.publish(LogRecord
Format and publish a
LogRecord.
|
void |
ConsoleHandler.publish(LogRecord
Publish a
LogRecord.
|
void |
StreamHandler.publish(LogRecord
Format and publish a
LogRecord.
|
void |
SocketHandler.publish(LogRecord
Format and publish a
LogRecord.
|