Package

scribe

handler

Permalink

package handler

Visibility
  1. Public
  2. All

Type Members

  1. case class FunctionalLogHandler(f: (LogRecord[_]) ⇒ Unit, modifiers: List[LogModifier]) extends LogHandler with Product with Serializable

    Permalink
  2. trait LogHandle extends AnyRef

    Permalink
  3. trait LogHandler extends AnyRef

    Permalink

    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.

  4. case class LogHandlerBuilder(formatter: Formatter = Formatter.default, writer: Writer = ConsoleWriter, outputFormat: OutputFormat = OutputFormat.default, modifiers: List[LogModifier] = Nil, handle: LogHandle = SynchronousLogHandle) extends LogHandler with Product with Serializable

    Permalink
  5. class LogOverflowException extends RuntimeException

    Permalink

Value Members

  1. object LogHandler

    Permalink
  2. object SynchronousLogHandle extends LogHandle

    Permalink

Ungrouped