public class Handler extends java.util.logging.Handler
Sends log messages to all log event subscribers.
| Constructor and Description |
|---|
Handler()
Create a log handler
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Close the log handler
|
void |
flush()
Flush log handler
|
void |
publish(java.util.logging.LogRecord record)
Publish a log record
|
public Handler()
public void publish(java.util.logging.LogRecord record)
publish in class java.util.logging.Handlerrecord - Log record to publish
The log record is published synchronously to all log event subscribers. This method can be called with or without a transaction.
public void flush()
This is a noop.
flush in class java.util.logging.Handlerpublic void close()
This is a noop.
close in class java.util.logging.Handler