public class OracleSimpleFormatter
extends java.util.logging.SimpleFormatter
LogRecord
in a human readable
format. The summary will typically be 1 or 2 lines.
Configuration:
The SimpleFormatter
is initialized with the
format string
specified in the java.util.logging.SimpleFormatter.format
property to format the log messages.
This property can be defined
in the logging properties
configuration file
or as a system property. If this property is set in both
the logging properties and system properties,
the format string specified in the system property will be used.
If this property is not defined or the given format string
is illegal,
the default format is implementation-specific.
Formatter
Constructor and Description |
---|
OracleSimpleFormatter() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
formatMessage(java.util.logging.LogRecord record)
Localize and format the message string from a log record.
|
public java.lang.String formatMessage(java.util.logging.LogRecord record)
The message string is first localized to a format string using the record's ResourceBundle. (If there is no ResourceBundle, or if the message key is not found, then the key is used as the format string.) The format String uses java.text style formatting.
formatMessage
in class java.util.logging.Formatter
record
- the log record containing the raw message