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 with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, LoggerSupport, 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[M](message: => M, t: Throwable)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  11. def debug[M](message: => M)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  12. def debug()(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  13. 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
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def error[M](message: => M, t: Throwable)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  16. def error[M](message: => M)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  17. def error()(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  19. def get(key: String): Option[Any]
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. val handlers: List[LogHandler]
  22. val id: LoggerId
  23. def includes(level: Level): Boolean
  24. def info[M](message: => M, t: Throwable)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  25. def info[M](message: => M)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  26. def info()(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  27. lazy val isEmpty: Boolean
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def log[M](record: LogRecord[M]): Unit
    Definition Classes
    LoggerLoggerSupport
  30. def log[M](level: Level, message: => M, throwable: Option[Throwable])(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  31. def logDirect[M](level: Level, message: => M, throwable: Option[Throwable] = None, fileName: String = "", className: String = "", methodName: Option[String] = None, line: Option[Int] = None, column: Option[Int] = None, thread: Thread = Thread.currentThread(), timeStamp: Long = Time())(implicit loggable: Loggable[M]): Unit
  32. def modifierById[M <: LogModifier](id: String, recursive: Boolean): Option[M]
  33. val modifiers: List[LogModifier]
  34. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. def orphan(): Logger
  38. val overrideClassName: Option[String]
  39. val parentId: Option[LoggerId]
  40. def productElementNames: Iterator[String]
    Definition Classes
    Product
  41. def replace(name: Option[String] = None): Logger
  42. def reset(): Logger
  43. def set(key: String, value: => Any): Logger
  44. def setModifiers(modifiers: List[LogModifier]): Logger
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def trace[M](message: => M, t: Throwable)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  47. def trace[M](message: => M)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  48. def trace()(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  52. def warn[M](message: => M, t: Throwable)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  53. def warn[M](message: => M)(implicit arg0: Loggable[M], pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  54. def warn()(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit
    Definition Classes
    LoggerSupport
  55. def withBoost(booster: (Double) => Double, priority: Priority = Priority.Normal): Logger
  56. def withBoostOneLevel(): Logger
  57. def withBoosted(minimumLevel: Level, destinationLevel: Level): Logger
  58. def withClassNameOverride(className: String): Logger
  59. def withHandler(formatter: Formatter = Formatter.default, writer: Writer = ConsoleWriter, minimumLevel: Option[Level] = None, modifiers: List[LogModifier] = Nil, outputFormat: OutputFormat = OutputFormat.default): Logger
  60. def withHandler(handler: LogHandler): Logger
  61. def withMinimumLevel(level: Level): Logger
  62. final def withModifier(modifier: LogModifier): Logger
  63. def withParent(id: LoggerId): Logger
  64. def withParent(logger: Logger): Logger
  65. def withParent(name: String): Logger
  66. def withoutHandler(handler: LogHandler): Logger
  67. final def withoutModifier(modifier: LogModifier): Logger

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from LoggerSupport

Inherited from AnyRef

Inherited from Any

Ungrouped