play.api

LoggerLike

trait LoggerLike extends AnyRef

Typical logger interface.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. LoggerLike
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. val logger : Logger

    The underlying SLF4J Logger.

    The underlying SLF4J Logger.

    Attributes
    abstract

Concrete Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def debug (message: ⇒ String, error: ⇒ Throwable): Unit

    Logs a message with the DEBUG level.

    Logs a message with the DEBUG level.

    message

    the message to log

    error

    the associated exception

  9. def debug (message: ⇒ String): Unit

    Logs a message with the DEBUG level.

    Logs a message with the DEBUG level.

    message

    the message to log

  10. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  11. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def error (message: ⇒ String, error: ⇒ Throwable): Unit

    Logs a message with the ERROR level.

    Logs a message with the ERROR level.

    message

    the message to log

    error

    the associated exception

  13. def error (message: ⇒ String): Unit

    Logs a message with the ERROR level.

    Logs a message with the ERROR level.

    message

    the message to log

  14. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  16. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  17. def info (message: ⇒ String, error: ⇒ Throwable): Unit

    Logs a message with the INFO level.

    Logs a message with the INFO level.

    message

    the message to log

    error

    the associated exception

  18. def info (message: ⇒ String): Unit

    Logs a message with the INFO level.

    Logs a message with the INFO level.

    message

    the message to log

  19. lazy val isDebugEnabled : Boolean

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

  20. lazy val isErrorEnabled : Boolean

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

  21. lazy val isInfoEnabled : Boolean

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

  22. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  23. lazy val isTraceEnabled : Boolean

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

  24. lazy val isWarnEnabled : Boolean

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

  25. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  26. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  27. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  28. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  29. def toString (): String

    Definition Classes
    AnyRef → Any
  30. def trace (message: ⇒ String, error: ⇒ Throwable): Unit

    Logs a message with the TRACE level.

    Logs a message with the TRACE level.

    message

    the message to log

    error

    the associated exception

  31. def trace (message: ⇒ String): Unit

    Logs a message with the TRACE level.

    Logs a message with the TRACE level.

    message

    the message to log

  32. lazy val underlyingLogger : Logger

    The underlying SLF4J Logger.

  33. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  36. def warn (message: ⇒ String, error: ⇒ Throwable): Unit

    Logs a message with the WARN level.

    Logs a message with the WARN level.

    message

    the message to log

    error

    the associated exception

  37. def warn (message: ⇒ String): Unit

    Logs a message with the WARN level.

    Logs a message with the WARN level.

    message

    the message to log

Inherited from AnyRef

Inherited from Any