org.eintr.loglady

Logger

class Logger extends AnyRef

Main Logger API. Base class for loggers

Note: Don't use this class directly, use the Logging trait instead.

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

Instance Constructors

  1. new Logger ()

Type Members

  1. type LogFunc = (String, Throwable) ⇒ Unit

    A function that logs a message with an exception

    A function that logs a message with an exception

    Attributes
    protected

Abstract Value Members

  1. val logDebug : LogFunc

    Attributes
    protected abstract
  2. val logError : LogFunc

    Attributes
    protected abstract
  3. val logInfo : LogFunc

    Attributes
    protected abstract
  4. val logTrace : LogFunc

    Attributes
    protected abstract
  5. val logWarn : LogFunc

    Attributes
    protected abstract
  6. val logger : Logger

    The underlying logger as provided by slf4j

    The underlying logger as provided by slf4j

    Attributes
    protected 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 (thrown: Throwable, message: String, params: Any*): Unit

    Log debug message with an exception

  9. def debug (message: String, params: Any*): Unit

    Log debug message

  10. def eq (arg0: AnyRef): Boolean

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

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

    Log error message with an exception

  13. def error (message: String, params: Any*): Unit

    Log error message

  14. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def format (fmt: String, params: Seq[Any]): String

    Format a string using params, if any, otherwise use the string as-is

    Format a string using params, if any, otherwise use the string as-is

    Attributes
    protected final
    Annotations
    @inline()
  16. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  17. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  18. def info (thrown: Throwable, message: String, params: Any*): Unit

    Log info message with an exception

  19. def info (message: String, params: Any*): Unit

    Log info message

  20. def isDebugEnabled : Boolean

  21. def isErrorEnabled : Boolean

  22. def isInfoEnabled : Boolean

  23. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  24. def isTraceEnabled : Boolean

  25. def isWarnEnabled : Boolean

  26. lazy val name : String

    Name of the underlying logger

  27. def ne (arg0: AnyRef): Boolean

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

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

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

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

    Definition Classes
    AnyRef → Any
  32. def trace (thrown: Throwable, message: String, params: Any*): Unit

    Log trace message with an exception

  33. def trace (message: String, params: Any*): Unit

    Log trace message

  34. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  37. def warn (thrown: Throwable, message: String, params: Any*): Unit

    Log warning message with an exception

  38. def warn (message: String, params: Any*): Unit

    Log warn message

Inherited from AnyRef

Inherited from Any