Packages

final class Logger extends AnyVal

Source
Logger.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Logger
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Logger(logger: slf4j.Logger)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Logger toany2stringadd[Logger] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Logger, B)
    Implicit
    This member is added by an implicit conversion from Logger toArrowAssoc[Logger] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. def apply(level: LogLevel): LevelLogger
  7. def apply(lvl: Error.type): ErrorLevelLogger
    Annotations
    @inline()
  8. def apply(lvl: Warn.type): WarnLevelLogger
    Annotations
    @inline()
  9. def apply(lvl: Info.type): InfoLevelLogger
    Annotations
    @inline()
  10. def apply(lvl: Debug.type): DebugLevelLogger
    Annotations
    @inline()
  11. def apply(lvl: Trace.type): TraceLevelLogger
    Annotations
    @inline()
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. macro def debug(msg: String): Unit
  14. macro def debug(t: Throwable)(msg: String): Unit
  15. def ensuring(cond: (Logger) => Boolean, msg: => Any): Logger
    Implicit
    This member is added by an implicit conversion from Logger toEnsuring[Logger] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (Logger) => Boolean): Logger
    Implicit
    This member is added by an implicit conversion from Logger toEnsuring[Logger] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: => Any): Logger
    Implicit
    This member is added by an implicit conversion from Logger toEnsuring[Logger] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): Logger
    Implicit
    This member is added by an implicit conversion from Logger toEnsuring[Logger] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. macro def error(msg: String): Unit
  20. macro def error(t: Throwable)(msg: String): Unit
  21. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Logger toStringFormat[Logger] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  23. macro def info(msg: String): Unit
  24. macro def info(t: Throwable)(msg: String): Unit
  25. def isDebugEnabled: Boolean
    Annotations
    @inline()
  26. def isErrorEnabled: Boolean
    Annotations
    @inline()
  27. def isInfoEnabled: Boolean
    Annotations
    @inline()
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def isTraceEnabled: Boolean
    Annotations
    @inline()
  30. def isWarnEnabled: Boolean
    Annotations
    @inline()
  31. val logger: slf4j.Logger
  32. def name: String

    The name of this logger.

    The name of this logger.

    Annotations
    @inline()
  33. def toString(): String
    Definition Classes
    Any
  34. macro def trace(msg: String): Unit
  35. macro def trace(t: Throwable)(msg: String): Unit
  36. macro def warn(msg: String): Unit
  37. macro def warn(t: Throwable)(msg: String): Unit

Deprecated Value Members

  1. def [B](y: B): (Logger, B)
    Implicit
    This member is added by an implicit conversion from Logger toArrowAssoc[Logger] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd fromLogger to any2stringadd[Logger]

Inherited by implicit conversion StringFormat fromLogger to StringFormat[Logger]

Inherited by implicit conversion Ensuring fromLogger to Ensuring[Logger]

Inherited by implicit conversion ArrowAssoc fromLogger to ArrowAssoc[Logger]

Ungrouped