Packages

case class Logger(underlying: org.slf4j.Logger) extends Product with Serializable

A wrapper around an slf4j.Logger to support rudimentary structured logging.

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

Instance Constructors

  1. new Logger(underlying: org.slf4j.Logger)

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 clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. def debug(loggedEvent: LoggedEvent): Unit

    Logs the given event at the DEBUG level.

    Logs the given event at the DEBUG level.

    Annotations
    @inline()
  7. def debug(eventId: String, kvPairs: (String, Any)*): Unit

    Logs an event with the given id and key-value pairs at the DEBUG level.

    Logs an event with the given id and key-value pairs at the DEBUG level.

    Annotations
    @inline()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def error(loggedEvent: LoggedEvent): Unit

    Logs the given event at the ERROR level.

    Logs the given event at the ERROR level.

    Annotations
    @inline()
  10. def error(eventId: String, kvPairs: (String, Any)*): Unit

    Logs an event with the given id and key-value pairs at the ERROR level.

    Logs an event with the given id and key-value pairs at the ERROR level.

    Annotations
    @inline()
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def info(loggedEvent: LoggedEvent): Unit

    Logs the given event at the INFO level.

    Logs the given event at the INFO level.

    Annotations
    @inline()
  14. def info(eventId: String, kvPairs: (String, Any)*): Unit

    Logs an event with the given id and key-value pairs at the INFO level.

    Logs an event with the given id and key-value pairs at the INFO level.

    Annotations
    @inline()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def lazyEvalDebug(eventId: String, kvPairs: ⇒ Iterable[(String, Any)]): Unit

    Logs an event with the given id and key-value pairs at the DEBUG level.

    Logs an event with the given id and key-value pairs at the DEBUG level. The key-value pairs are only evaluated if the DEBUG level is enabled.

    Annotations
    @inline()
  17. def lazyEvalError(eventId: String, kvPairs: ⇒ Iterable[(String, Any)]): Unit

    Logs an event with the given id and key-value pairs at the ERROR level.

    Logs an event with the given id and key-value pairs at the ERROR level. The key-value pairs are only evaluated if the ERROR level is enabled.

    Annotations
    @inline()
  18. def lazyEvalInfo(eventId: String, kvPairs: ⇒ Iterable[(String, Any)]): Unit

    Logs an event with the given id and key-value pairs at the INFO level.

    Logs an event with the given id and key-value pairs at the INFO level. The key-value pairs are only evaluated if the INFO level is enabled.

    Annotations
    @inline()
  19. def lazyEvalTrace(eventId: String, kvPairs: ⇒ Iterable[(String, Any)]): Unit

    Logs an event with the given id and key-value pairs at the TRACE level.

    Logs an event with the given id and key-value pairs at the TRACE level. The key-value pairs are only evaluated if the TRACE level is enabled.

    Annotations
    @inline()
  20. def lazyEvalWarn(eventId: String, kvPairs: ⇒ Iterable[(String, Any)]): Unit

    Logs an event with the given id and key-value pairs at the WARN level.

    Logs an event with the given id and key-value pairs at the WARN level. The key-value pairs are only evaluated if the WARN level is enabled.

    Annotations
    @inline()
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def trace(loggedEvent: LoggedEvent): Unit

    Logs the given event at the TRACE level.

    Logs the given event at the TRACE level.

    Annotations
    @inline()
  26. def trace(eventId: String, kvPairs: (String, Any)*): Unit

    Logs an event with the given id and key-value pairs at the TRACE level.

    Logs an event with the given id and key-value pairs at the TRACE level.

    Annotations
    @inline()
  27. val underlying: org.slf4j.Logger
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  31. def warn(loggedEvent: LoggedEvent): Unit

    Logs the given event at the WARN level.

    Logs the given event at the WARN level.

    Annotations
    @inline()
  32. def warn(eventId: String, kvPairs: (String, Any)*): Unit

    Logs an event with the given id and key-value pairs at the WARN level.

    Logs an event with the given id and key-value pairs at the WARN level.

    Annotations
    @inline()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped