Trait

play.api

LoggerLike

Related Doc: package api

Permalink

trait LoggerLike extends AnyRef

Typical logger interface.

Source
Logger.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LoggerLike
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val logger: org.slf4j.Logger

    Permalink

    The underlying SLF4J Logger.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def debug(message: ⇒ String, error: ⇒ Throwable)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the DEBUG level.

    Logs a message with the DEBUG level.

    message

    the message to log

    error

    the associated exception

    mc

    the implicit marker context, if defined.

  7. def debug(message: ⇒ String)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the DEBUG level.

    Logs a message with the DEBUG level.

    message

    the message to log

    mc

    the implicit marker context, if defined.

  8. def enabled: Boolean

    Permalink
    Annotations
    @inline()
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def error(message: ⇒ String, error: ⇒ Throwable)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the ERROR level.

    Logs a message with the ERROR level.

    message

    the message to log

    error

    the associated exception

    mc

    the implicit marker context, if defined.

  12. def error(message: ⇒ String)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the ERROR level.

    Logs a message with the ERROR level.

    message

    the message to log

    mc

    the implicit marker context, if defined.

  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. def info(message: ⇒ String, error: ⇒ Throwable)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the INFO level.

    Logs a message with the INFO level.

    message

    the message to log

    error

    the associated exception

    mc

    the implicit marker context, if defined.

  17. def info(message: ⇒ String)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the INFO level.

    Logs a message with the INFO level.

    message

    the message to log

    mc

    the implicit marker context, if defined.

  18. def isDebugEnabled(implicit mc: MarkerContext): Boolean

    Permalink

    true if the logger instance is enabled for the DEBUG level.

  19. def isErrorEnabled(implicit mc: MarkerContext): Boolean

    Permalink

    true if the logger instance is enabled for the ERROR level.

  20. def isInfoEnabled(implicit mc: MarkerContext): Boolean

    Permalink

    true if the logger instance is enabled for the INFO level.

  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def isTraceEnabled(implicit mc: MarkerContext): Boolean

    Permalink

    true if the logger instance is enabled for the TRACE level.

  23. def isWarnEnabled(implicit mc: MarkerContext): Boolean

    Permalink

    true if the logger instance is enabled for the WARN level.

  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. def trace(message: ⇒ String, error: ⇒ Throwable)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the TRACE level.

    Logs a message with the TRACE level.

    message

    the message to log

    error

    the associated exception

    mc

    the implicit marker context, if defined.

  30. def trace(message: ⇒ String)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the TRACE level.

    Logs a message with the TRACE level.

    message

    the message to log

    mc

    the implicit marker context, if defined.

  31. lazy val underlyingLogger: org.slf4j.Logger

    Permalink

    The underlying SLF4J Logger.

  32. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def warn(message: ⇒ String, error: ⇒ Throwable)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the WARN level.

    Logs a message with the WARN level.

    message

    the message to log

    error

    the associated exception

    mc

    the implicit marker context, if defined.

  36. def warn(message: ⇒ String)(implicit mc: MarkerContext): Unit

    Permalink

    Logs a message with the WARN level.

    Logs a message with the WARN level.

    message

    the message to log

    mc

    the implicit marker context, if defined.

Inherited from AnyRef

Inherited from Any

Ungrouped