Uses of Class
ch.qos.logback.core.spi.FilterReply
-
Packages that use FilterReply Package Description ch.qos.logback.classic.filter Contains filter implementations for selective logging based on various criteria.ch.qos.logback.classic.spi Contains core classes of logback classic.ch.qos.logback.classic.turbo Contains turbo filters for high-performance early filtering of logging requests.ch.qos.logback.core Contains the main classes of logback core.ch.qos.logback.core.filter Contains base classes to the event filtering functionality of logback.ch.qos.logback.core.model.processor Contains model processors for handling configuration model objects.ch.qos.logback.core.spi Contains core functionalities of logback, such asAppenderAttachableandLifeCycle. -
-
Uses of FilterReply in ch.qos.logback.classic.filter
Methods in ch.qos.logback.classic.filter that return FilterReply Modifier and Type Method Description FilterReplyLevelFilter. decide(ILoggingEvent event)FilterReplyThresholdFilter. decide(ILoggingEvent event) -
Uses of FilterReply in ch.qos.logback.classic.spi
Methods in ch.qos.logback.classic.spi that return FilterReply Modifier and Type Method Description FilterReplyTurboFilterList. getTurboFilterChainDecision(Logger logger, org.slf4j.event.LoggingEvent slf4jEvent)Loop through the filters in the chain.FilterReplyTurboFilterList. getTurboFilterChainDecision(org.slf4j.Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)Loop through the filters in the chain. -
Uses of FilterReply in ch.qos.logback.classic.turbo
Fields in ch.qos.logback.classic.turbo declared as FilterReply Modifier and Type Field Description protected FilterReplyMatchingFilter. onMatchprotected FilterReplyMatchingFilter. onMismatchMethods in ch.qos.logback.classic.turbo that return FilterReply Modifier and Type Method Description FilterReplyDuplicateMessageFilter. decide(org.slf4j.Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)FilterReplyDynamicThresholdFilter. decide(org.slf4j.Marker marker, Logger logger, Level level, String s, Object[] objects, Throwable throwable)This method first finds the MDC value for 'key'.FilterReplyMarkerFilter. decide(org.slf4j.Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)FilterReplyMDCFilter. decide(org.slf4j.Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)FilterReplyReconfigureOnChangeFilter. decide(org.slf4j.Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)Deprecated.FilterReplyTurboFilter. decide(Logger logger, org.slf4j.event.LoggingEvent slf4jEvent)This method is intended to be called via SLF4J's fluent API and more specifically byLogger.log(org.slf4j.event.LoggingEvent slf4jEvent).abstract FilterReplyTurboFilter. decide(org.slf4j.Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)Make a decision based on the multiple parameters passed as arguments.FilterReplyDynamicThresholdFilter. getOnHigherOrEqual()Get the FilterReply when the effective level is higher or equal to the level of current logging requestFilterReplyDynamicThresholdFilter. getOnLower()Get the FilterReply when the effective level is lower than the level of current logging requestMethods in ch.qos.logback.classic.turbo with parameters of type FilterReply Modifier and Type Method Description voidDynamicThresholdFilter. setOnHigherOrEqual(FilterReply onHigherOrEqual)voidDynamicThresholdFilter. setOnLower(FilterReply onLower) -
Uses of FilterReply in ch.qos.logback.core
Methods in ch.qos.logback.core that return FilterReply Modifier and Type Method Description FilterReplyAppenderBase. getFilterChainDecision(E event)FilterReplyUnsynchronizedAppenderBase. getFilterChainDecision(E event) -
Uses of FilterReply in ch.qos.logback.core.filter
Fields in ch.qos.logback.core.filter declared as FilterReply Modifier and Type Field Description protected FilterReplyAbstractMatcherFilter. onMatchprotected FilterReplyAbstractMatcherFilter. onMismatchMethods in ch.qos.logback.core.filter that return FilterReply Modifier and Type Method Description FilterReplyEvaluatorFilter. decide(E event)abstract FilterReplyFilter. decide(E event)If the decision is, then the event will be dropped.DENYFilterReplyAbstractMatcherFilter. getOnMatch()FilterReplyAbstractMatcherFilter. getOnMismatch()Methods in ch.qos.logback.core.filter with parameters of type FilterReply Modifier and Type Method Description voidAbstractMatcherFilter. setOnMatch(FilterReply reply)voidAbstractMatcherFilter. setOnMismatch(FilterReply reply) -
Uses of FilterReply in ch.qos.logback.core.model.processor
Methods in ch.qos.logback.core.model.processor that return FilterReply Modifier and Type Method Description FilterReplyAllowAllModelFilter. decide(Model model)FilterReplyAllowModelFilter. decide(Model model)FilterReplyChainedModelFilter. decide(Model model)FilterReplyDenyAllModelFilter. decide(Model model)FilterReplyDenyModelFilter. decide(Model model)FilterReplyModelFilter. decide(Model model) -
Uses of FilterReply in ch.qos.logback.core.spi
Methods in ch.qos.logback.core.spi that return FilterReply Modifier and Type Method Description FilterReplyFilterAttachable. getFilterChainDecision(E event)Loop through the filters in the chain.FilterReplyFilterAttachableImpl. getFilterChainDecision(E event)Loop through the filters in the list.static FilterReplyFilterReply. valueOf(String name)Returns the enum constant of this type with the specified name.static FilterReply[]FilterReply. values()Returns an array containing the constants of this enum type, in the order they are declared.
-