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