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, Product, Equals, LoggerSupport[Unit], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Logger
  2. Serializable
  3. Product
  4. Equals
  5. LoggerSupport
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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(classOf[java.lang.CloneNotSupportedException]) @native()
  9. val data: Map[String, () => Any]
  10. def debug(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  11. def elapsed[Return](f: => Return): 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): Unit
    Definition Classes
    LoggerSupport
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def get(key: String): Option[Any]
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. val handlers: List[LogHandler]
  18. val id: LoggerId
  19. def includes(level: Level): Boolean
  20. def info(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  21. lazy val isEmpty: Boolean
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def log(record: LogRecord): Unit
    Definition Classes
    LoggerLoggerSupport
  24. def log(level: Level, messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerLoggerSupport
  25. 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
  26. def logInternal(record: LogRecord): Unit
    Attributes
    protected
  27. def modifierById[M <: LogModifier](id: String, recursive: Boolean): Option[M]
  28. val modifiers: List[LogModifier]
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. def orphan(): Logger
  33. val overrideClassName: Option[String]
  34. val parentId: Option[LoggerId]
  35. def productElementNames: Iterator[String]
    Definition Classes
    Product
  36. def replace(name: Option[String] = None): Logger
  37. def reset(): Logger
  38. def set(key: String, value: => Any): Logger
  39. def setModifiers(modifiers: List[LogModifier]): Logger
  40. def shouldLog(record: LogRecord): Boolean
    Attributes
    protected
  41. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  42. def trace(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  45. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  46. def warn(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  47. def withBoost(booster: (Double) => Double, priority: Priority = Priority.Normal): Logger
  48. def withBoostOneLevel(): Logger
  49. def withBoosted(minimumLevel: Level, destinationLevel: Level): Logger
  50. def withClassNameOverride(className: String): Logger
  51. 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
  52. def withHandler(handler: LogHandler): Logger
  53. def withMinimumLevel(level: Level): Logger
  54. final def withModifier(modifier: LogModifier): Logger
  55. def withParent(id: LoggerId): Logger
  56. def withParent(logger: Logger): Logger
  57. def withParent(name: String): Logger
  58. def withoutHandler(handler: LogHandler): Logger
  59. final def withoutModifier(modifier: LogModifier): Logger

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from LoggerSupport[Unit]

Inherited from AnyRef

Inherited from Any

Ungrouped