case class LogBooster(booster: (Double) => Double, priority: Priority, id: String = LogBooster.Id) extends LogModifier with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- LogBooster
- Serializable
- Product
- Equals
- LogModifier
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new LogBooster(booster: (Double) => Double, priority: Priority, id: String = LogBooster.Id)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def alwaysApply: LogModifier
- Definition Classes
- LogModifier
- 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
- LogBooster → LogModifier
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val booster: (Double) => Double
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- 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
- LogBooster → LogModifier
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- 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
- LogBooster → LogModifier
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withId(id: String): LogModifier
- Definition Classes
- LogBooster → LogModifier