t

akka.event

LoggingFilter

trait LoggingFilter extends AnyRef

Filter of log events that is used by the LoggingAdapter before publishing log events to the eventStream. It can perform fine grained filtering based on the log source.

Note that the EventStream will only subscribe loggers to the events corresponding to the logLevel of the EventStream. Therefore it is good practice that the LoggingFilter implementation first filters using the logLevel of the EventStream before applying more fine grained filters.

Source
Logging.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LoggingFilter
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def isDebugEnabled(logClass: Class[_], logSource: String): Boolean
  2. abstract def isErrorEnabled(logClass: Class[_], logSource: String): Boolean
  3. abstract def isInfoEnabled(logClass: Class[_], logSource: String): Boolean
  4. abstract def isWarningEnabled(logClass: Class[_], logSource: String): Boolean