Packages

p

scribe

handler

package handler

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. handler
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class AsynchronousLogHandler(formatter: Formatter = Formatter.default, writer: Writer = ConsoleWriter, modifiers: List[LogModifier] = Nil, maxBuffer: Int = AsynchronousLogHandler.DefaultMaxBuffer, overflow: Overflow = Overflow.DropOld) extends LogHandler with Product with Serializable
  2. final class AtomicLongExtras extends AnyVal
  3. case class FunctionalLogHandler(f: (LogRecord[_]) => Unit, modifiers: List[LogModifier]) extends LogHandler with Product with Serializable
  4. trait LogHandler extends AnyRef

    LogHandler is responsible for causing some side-effect with a LogRecord.

    LogHandler is responsible for causing some side-effect with a LogRecord. This usually includes formatting the record with a Formatter and writing it to a Writer, although some more creative implementations exist to do more advanced actions. LogHandlers are added to Logger instances via withHandler, although it's usually sufficient to use the withHandler method that takes a Formatter and Writer instead of defining a LogHandler manually.

  5. class LogOverflowException extends RuntimeException
  6. sealed trait Overflow extends AnyRef
  7. case class SynchronousLogHandler(formatter: Formatter = Formatter.default, writer: Writer = ConsoleWriter, modifiers: List[LogModifier] = Nil) extends LogHandler with Product with Serializable

Value Members

  1. implicit def atomicExtras(l: AtomicLong): AtomicLongExtras
  2. object AsynchronousLogHandler extends Serializable
  3. object LogHandler
  4. object Overflow
  5. object SynchronousLogHandler extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped