Package org.jboss.logmanager.filters
Class DenyAllFilter
- java.lang.Object
-
- org.jboss.logmanager.filters.DenyAllFilter
-
- All Implemented Interfaces:
java.util.logging.Filter
public final class DenyAllFilter extends java.lang.Object implements java.util.logging.FilterA deny-all filter.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DenyAllFiltergetInstance()Get the filter instance.booleanisLoggable(java.util.logging.LogRecord record)Always returnsfalse.
-
-
-
Method Detail
-
isLoggable
public boolean isLoggable(java.util.logging.LogRecord record)
Always returnsfalse.- Specified by:
isLoggablein interfacejava.util.logging.Filter- Parameters:
record- ignored- Returns:
false
-
getInstance
public static DenyAllFilter getInstance()
Get the filter instance.- Returns:
- the filter instance
-
-