Uses of Interface
ch.qos.logback.core.boolex.EventEvaluator
-
Packages that use EventEvaluator Package Description ch.qos.logback.classic.boolex Contains boolean expression evaluators for filtering logging events.ch.qos.logback.classic.net Contains classes used to log through a networkch.qos.logback.core.boolex Contains the EventEvaluator interface and subclasses.ch.qos.logback.core.filter Contains base classes to the event filtering functionality of logback.ch.qos.logback.core.net Contains the base classes used by logback to log to remote destinations. -
-
Uses of EventEvaluator in ch.qos.logback.classic.boolex
Classes in ch.qos.logback.classic.boolex that implement EventEvaluator Modifier and Type Class Description classExceptionMatchEvaluatorA simpleEventEvaluatorthat checks whether the logging event being evaluated has a throwable of the same class as specified by theExceptionMatchEvaluator.exceptionClassparameter.classOnErrorEvaluatorEvaluates to true when the logging event passed as parameter has level ERROR or higher.classOnMarkerEvaluatorEvaluates to true when the logging event passed as parameter contains one of the user-specified markers.classStubEventEvaluator -
Uses of EventEvaluator in ch.qos.logback.classic.net
Constructors in ch.qos.logback.classic.net with parameters of type EventEvaluator Constructor Description SMTPAppender(EventEvaluator<ILoggingEvent> eventEvaluator)Use the parameter as theEventEvaluatorfor this SMTPAppender. -
Uses of EventEvaluator in ch.qos.logback.core.boolex
Classes in ch.qos.logback.core.boolex that implement EventEvaluator Modifier and Type Class Description classEventEvaluatorBase<E> -
Uses of EventEvaluator in ch.qos.logback.core.filter
Methods in ch.qos.logback.core.filter that return EventEvaluator Modifier and Type Method Description EventEvaluator<E>EvaluatorFilter. getEvaluator()Methods in ch.qos.logback.core.filter with parameters of type EventEvaluator Modifier and Type Method Description voidEvaluatorFilter. setEvaluator(EventEvaluator<E> evaluator) -
Uses of EventEvaluator in ch.qos.logback.core.net
Fields in ch.qos.logback.core.net declared as EventEvaluator Modifier and Type Field Description protected EventEvaluator<E>SMTPAppenderBase. eventEvaluatorMethods in ch.qos.logback.core.net with parameters of type EventEvaluator Modifier and Type Method Description voidSMTPAppenderBase. setEvaluator(EventEvaluator<E> eventEvaluator)The EventEvaluator option takes a string value representing the name of the class implementing theEventEvaluatorinterface.
-