|
Apache log4cxx Version 0.10.0
|
This filter drops all logging events. More...
#include <denyallfilter.h>
Inherits Filter.
Public Types | |
| typedef spi::Filter | BASE_CLASS |
Public Types inherited from Filter | |
| enum | FilterDecision { DENY = -1 , NEUTRAL = 0 , ACCEPT = 1 } |
Public Member Functions | |
| DenyAllFilter () | |
| FilterDecision | decide (const spi::LoggingEventPtr &) const |
Always returns the integer constant DENY regardless of the LoggingEvent parameter. | |
Public Member Functions inherited from Filter | |
| Filter () | |
| void | addRef () const |
| void | releaseRef () const |
| log4cxx::spi::FilterPtr | getNext () const |
| void | setNext (const log4cxx::spi::FilterPtr &newNext) |
| void | activateOptions (log4cxx::helpers::Pool &p) |
| Usually filters options become active when set. | |
| void | setOption (const LogString &option, const LogString &value) |
Set option to value. | |
Public Member Functions inherited from OptionHandler | |
| virtual | ~OptionHandler () |
Public Member Functions inherited from Object | |
| virtual const helpers::Class & | getClass () const |
| virtual | ~Object () |
| virtual bool | instanceof (const Class &clazz) const =0 |
| virtual const void * | cast (const Class &clazz) const =0 |
Public Member Functions inherited from ObjectImpl | |
| ObjectImpl () | |
| virtual | ~ObjectImpl () |
| void | addRef () const |
| void | releaseRef () const |
Additional Inherited Members | |
Static Public Member Functions inherited from Object | |
| static const helpers::Class & | getStaticClass () |
| static const log4cxx::helpers::ClassRegistration & | registerClass () |
Protected Attributes inherited from ObjectImpl | |
| unsigned int volatile | ref |
This filter drops all logging events.
You can add this filter to the end of a filter chain to switch from the default "accept all unless instructed otherwise" filtering behaviour to a "deny all unless instructed otherwise" behaviour.
| typedef spi::Filter BASE_CLASS |
|
inline |
|
inlinevirtual |
Always returns the integer constant DENY regardless of the LoggingEvent parameter.
| event | The LoggingEvent to filter. |
DENY. Implements Filter.