| java.util.logging.Filter
Filter | public interface Filter (Code) | | A Filter provides a mechanism for exercising fine-grained control over what
records get logged.
|
isLoggable | boolean isLoggable(LogRecord record)(Code) | | Checks the
LogRecord to determine if it should be logged.
Parameters: record - The LogRecord to be checked. true if the supplied log record needs to belogged, otherwise false |
|
|