Package

com.outr

scribe

Permalink

package scribe

Visibility
  1. Public
  2. All

Type Members

  1. case class Level(name: String, value: Double) extends Product with Serializable

    Permalink
  2. trait LogHandler extends AnyRef

    Permalink
  3. class LogRecord extends AnyRef

    Permalink
  4. case class Logger(name: String, parent: Option[Logger] = Some(Logger.Root), multiplier: Double = 1.0) extends Product with Serializable

    Permalink

    Logger is the class to which all logging calls are made.

    Logger is the class to which all logging calls are made. The primary use-case of Logger is via use of the Logging trait that may be mixed-in to any class.

    name

    the name of this logger

    parent

    the parent logger (defaults to Logger.Root)

    multiplier

    the multiplier that should be applied to boost the value of all messages routed through this logger (Defaults to 1.0)

  5. trait Logging extends AnyRef

    Permalink

    Logging is a mix-in to conveniently add logging support to any class or object.

  6. case class StandardLogHandler(level: Level, formatter: Formatter, writer: Writer) extends LogHandler with Product with Serializable

    Permalink

Value Members

  1. object Level extends Serializable

    Permalink
  2. object LogHandler

    Permalink
  3. object LogRecord

    Permalink
  4. object Logger extends Serializable

    Permalink
  5. object Macros

    Permalink
  6. object Platform

    Permalink
  7. package formatter

    Permalink
  8. package writer

    Permalink

Ungrouped