Packages

case class LevelFilter(include: (Double) => Boolean, exclude: (Double) => Boolean, priority: Priority, ignoreBoost: Boolean = false, id: String = LevelFilter.Id) extends LogModifier with Filter with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Filter, LogModifier, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LevelFilter
  2. Serializable
  3. Product
  4. Equals
  5. Filter
  6. LogModifier
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LevelFilter(include: (Double) => Boolean, exclude: (Double) => Boolean, priority: Priority, ignoreBoost: Boolean = false, id: String = LevelFilter.Id)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def &&(that: Filter): Filter
    Definition Classes
    Filter
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def accepts(level: Double): Boolean
  6. def alwaysApply: LogModifier
    Definition Classes
    LogModifier
  7. def apply[M](record: LogRecord[M]): Option[LogRecord[M]]

    Handles modification of a LogRecord

    Handles modification of a LogRecord

    M

    the type of message

    record

    the record to modify

    returns

    Some LogRecord that should continue to propagate or None if the logging action should be canceled

    Definition Classes
    LevelFilterLogModifier
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. val exclude: (Double) => Boolean
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. val id: String

    Represents a unique identifier for this type of modifier.

    Represents a unique identifier for this type of modifier. This is used when adding a LogModifier to a Logger to replace by type.

    Definition Classes
    LevelFilterLogModifier
  15. val ignoreBoost: Boolean
  16. val include: (Double) => Boolean
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def matches[M](record: LogRecord[M]): Boolean
    Definition Classes
    LevelFilterFilter
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. val priority: Priority

    Multiple LogModifiers attached to the same Logger are automatically sorted by Priority.

    Multiple LogModifiers attached to the same Logger are automatically sorted by Priority.

    Definition Classes
    LevelFilterLogModifier
  23. def productElementNames: Iterator[String]
    Definition Classes
    Product
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. def withId(id: String): LogModifier
    Definition Classes
    LevelFilterLogModifier
  29. def ||(that: Filter): Filter
    Definition Classes
    Filter

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Filter

Inherited from LogModifier

Inherited from AnyRef

Inherited from Any

Ungrouped