Packages

case class Logger(parentId: Option[LoggerId] = Some(Logger.RootId), modifiers: List[LogModifier] = Nil, handlers: List[LogHandler] = Nil, overrideClassName: Option[String] = None, data: Map[String, () ⇒ Any] = Map.empty, id: LoggerId = LoggerId()) extends LoggerSupport[Unit] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, LoggerSupport[Unit], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Logger
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. LoggerSupport
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Logger(parentId: Option[LoggerId] = Some(Logger.RootId), modifiers: List[LogModifier] = Nil, handlers: List[LogHandler] = Nil, overrideClassName: Option[String] = None, data: Map[String, () ⇒ Any] = Map.empty, id: LoggerId = LoggerId())

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. def apply[Return](keyValues: (String, Any)*)(f: ⇒ Return): Return

    Contextualize key/value pairs set on MDC.

    Contextualize key/value pairs set on MDC. This will be made avoid on each log record within

    keyValues

    tuples of key/value pairs to set on MDC

    f

    the context for which these MDC values are set

    Definition Classes
    LoggerSupport
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clearHandlers(): Logger
  7. def clearModifiers(): Logger
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  9. val data: Map[String, () ⇒ Any]
  10. def debug(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): Unit
    Definition Classes
    LoggerSupport
  11. def elapsed[Return](f: ⇒ Return)(implicit mdc: MDC): Return

    Includes MDC elapsed to show elapsed time within the block

    Includes MDC elapsed to show elapsed time within the block

    f

    the code block to time

    Definition Classes
    LoggerSupport
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def error(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): Unit
    Definition Classes
    LoggerSupport
  14. def get(key: String): Option[Any]
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. val handlers: List[LogHandler]
  17. val id: LoggerId
  18. def includes(level: Level): Boolean
  19. def info(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): Unit
    Definition Classes
    LoggerSupport
  20. lazy val isEmpty: Boolean
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def log(record: LogRecord): Unit
    Definition Classes
    LoggerLoggerSupport
  23. def log(level: Level, mdc: MDC, messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerLoggerSupport
  24. def logDirect(level: Level, messages: List[LoggableMessage] = Nil, fileName: String = "", className: String = "", methodName: Option[String] = None, line: Option[Int] = None, column: Option[Int] = None, thread: Thread = Thread.currentThread(), timeStamp: Long = Time()): Unit
  25. def modifierById[M <: LogModifier](id: String, recursive: Boolean): Option[M]
  26. val modifiers: List[LogModifier]
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  30. def orphan(): Logger
  31. val overrideClassName: Option[String]
  32. val parentId: Option[LoggerId]
  33. def replace(name: Option[String] = None): Logger
  34. def reset(): Logger
  35. def set(key: String, value: ⇒ Any): Logger
  36. def setModifiers(modifiers: List[LogModifier]): Logger
  37. def shouldLog(record: LogRecord): Boolean
    Attributes
    protected
  38. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  39. def trace(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): Unit
    Definition Classes
    LoggerSupport
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. def warn(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): Unit
    Definition Classes
    LoggerSupport
  44. def withBoost(booster: (Double) ⇒ Double, priority: Priority = Priority.Normal): Logger
  45. def withBoostOneLevel(): Logger
  46. def withBoosted(minimumLevel: Level, destinationLevel: Level): Logger
  47. def withClassNameOverride(className: String): Logger
  48. def withHandler(formatter: Formatter = Formatter.default, writer: Writer = ConsoleWriter, minimumLevel: Option[Level] = None, modifiers: List[LogModifier] = Nil, outputFormat: OutputFormat = OutputFormat.default, handle: LogHandle = SynchronousLogHandle): Logger
  49. def withHandler(handler: LogHandler): Logger
  50. def withMinimumLevel(level: Level): Logger
  51. final def withModifier(modifier: LogModifier): Logger
  52. def withParent(id: LoggerId): Logger
  53. def withParent(logger: Logger): Logger
  54. def withParent(name: String): Logger
  55. def withoutHandler(handler: LogHandler): Logger
  56. final def withoutModifier(modifier: LogModifier): Logger

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from LoggerSupport[Unit]

Inherited from AnyRef

Inherited from Any

Ungrouped