Packages

c

scribe.filter

FilterBuilder

case class FilterBuilder(priority: Priority = Priority.Normal, select: List[Filter] = Nil, include: List[Filter] = Nil, exclude: List[Filter] = Nil, booster: (Double) ⇒ Double = d => d, _excludeUnselected: Boolean = false) extends LogModifier with Product with Serializable

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

Instance Constructors

  1. new FilterBuilder(priority: Priority = Priority.Normal, select: List[Filter] = Nil, include: List[Filter] = Nil, exclude: List[Filter] = Nil, booster: (Double) ⇒ Double = d => d, _excludeUnselected: Boolean = false)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _excludeUnselected: Boolean
  5. 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
    FilterBuilderLogModifier
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def boost(booster: (Double) ⇒ Double): FilterBuilder
  8. def boostOneLevel: FilterBuilder
  9. def boosted(minimumLevel: Level, destinationLevel: Level): FilterBuilder
  10. val booster: (Double) ⇒ Double
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def exclude(filters: Filter*): FilterBuilder
  14. val exclude: List[Filter]
  15. def excludeUnselected: FilterBuilder
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def 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
    FilterBuilderLogModifier
  19. def include(filters: Filter*): FilterBuilder
  20. val include: List[Filter]
  21. def includeUnselected: FilterBuilder
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def priority(priority: Priority): FilterBuilder

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

  27. 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
    FilterBuilderLogModifier
  28. def select(filters: Filter*): FilterBuilder
  29. val select: List[Filter]
  30. def setLevel(level: Level): FilterBuilder
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from LogModifier

Inherited from AnyRef

Inherited from Any

Ungrouped