vy commented on code in PR #2717: URL: https://github.com/apache/logging-log4j2/pull/2717#discussion_r1668407817
########## src/site/antora/modules/ROOT/pages/manual/filters.adoc: ########## @@ -18,1036 +18,1448 @@ [id=filters] = Filters -Log4j supports filtering of log events at each level of the logging pipeline using two features: +Filters are Log4j plugins that evaluate the parameters of a logging call or a log event and return one of three results: -* the `level` attributes that can be set on loggers and appender references, -* filter components that can be attached to loggers, appenders, appender references or the global configuration object. +ACCEPT:: The filter accepts the log event. +Other filters in the same filtering stage are not evaluated. Review Comment: ```suggestion This effectively causes other filters in the same filtering stage to be skipped. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
