Filters logging for SECURITY markers. If a logging event has a SECURITY
marker attached to it, it will pass the filter. This is useful to route
security related events to a separate log file.
The default behavior of this filter is to deny all non-security events and
pass security events to the rest of the filter chain. If acceptAll is true,
then all security related events will pass this filter, regardless of other
filters on the filter chain. To enable acceptAll, configure the filter as
follows:
<filter class="org.owasp.security.logging.filter.SecurityMarkerFilter">
<acceptAll>true</acceptAll>
</filter>