Packages

case class Logger(parentId: Option[Long] = Some(Logger.rootId), modifiers: List[LogModifier] = Nil, handlers: List[LogHandler] = Nil, overrideClassName: Option[String] = None, id: Long = Random.nextLong()) 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[Long] = Some(Logger.rootId), modifiers: List[LogModifier] = Nil, handlers: List[LogHandler] = Nil, overrideClassName: Option[String] = None, id: Long = Random.nextLong())

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clearHandlers(): Logger
  6. def clearModifiers(): Logger
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. macro def debug[M](message: => M, t: Throwable)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  9. macro def debug[M](message: => M)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  10. macro def debug(): Unit
    Definition Classes
    LoggerSupport
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. macro def error[M](message: => M, t: Throwable)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  13. macro def error[M](message: => M)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  14. macro def error(): Unit
    Definition Classes
    LoggerSupport
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. val handlers: List[LogHandler]
  17. val id: Long
  18. def includes(level: Level): Boolean
  19. macro def info[M](message: => M, t: Throwable)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  20. macro def info[M](message: => M)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  21. macro def info(): Unit
    Definition Classes
    LoggerSupport
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def log[M](record: LogRecord[M]): Unit
    Definition Classes
    LoggerLoggerSupport
  24. macro def log[M](level: Level, message: => M, throwable: Option[Throwable])(implicit loggable: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  25. def logDirect[M](owner: Logger, 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
  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() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def orphan(): Logger
  31. val overrideClassName: Option[String]
  32. val parentId: Option[Long]
  33. def productElementNames: Iterator[String]
    Definition Classes
    Product
  34. def replace(name: Option[String] = None): Logger
  35. def reset(): Logger
  36. def setModifiers(modifiers: List[LogModifier]): Logger
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. macro def trace[M](message: => M, t: Throwable)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  39. macro def trace[M](message: => M)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  40. macro def trace(): Unit
    Definition Classes
    LoggerSupport
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. macro def warn[M](message: => M, t: Throwable)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  45. macro def warn[M](message: => M)(implicit arg0: Loggable[M]): Unit
    Definition Classes
    LoggerSupport
  46. macro def warn(): Unit
    Definition Classes
    LoggerSupport
  47. def withClassNameOverride(className: String): Logger
  48. def withHandler(formatter: Formatter = Formatter.default, writer: Writer = ConsoleWriter, minimumLevel: Option[Level] = None, modifiers: List[LogModifier] = Nil): Logger
  49. def withHandler(handler: LogHandler): Logger
  50. def withMinimumLevel(level: Level): Logger
  51. final def withModifier(modifier: LogModifier): Logger
  52. def withParent(id: Long): 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 Product

Inherited from Equals

Inherited from LoggerSupport

Inherited from AnyRef

Inherited from Any

Ungrouped