Class/Object

org.eintr.loglady

Logger

Related Docs: object Logger | package loglady

Permalink

abstract class Logger extends AnyRef

Main Logger API. Base class for loggers

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

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

Instance Constructors

  1. new Logger()

    Permalink

Type Members

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

    Permalink

    A function that logs a message with an exception

    A function that logs a message with an exception

    Attributes
    protected

Abstract Value Members

  1. abstract val logDebug: LogFunc

    Permalink
    Attributes
    protected
  2. abstract val logError: LogFunc

    Permalink
    Attributes
    protected
  3. abstract val logInfo: LogFunc

    Permalink
    Attributes
    protected
  4. abstract val logTrace: LogFunc

    Permalink
    Attributes
    protected
  5. abstract val logWarn: LogFunc

    Permalink
    Attributes
    protected
  6. abstract val logger: slf4j.Logger

    Permalink

    The underlying logger as provided by slf4j

    The underlying logger as provided by slf4j

    Attributes
    protected

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

    Permalink

    Log debug message with an exception

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

    Permalink

    Log debug message

  8. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink

    Log error message with an exception

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

    Permalink

    Log error message

  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def format(fmt: String, params: Seq[Any]): String

    Permalink

    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
    Annotations
    @inline()
  14. final def getClass(): Class[_]

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

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

    Permalink

    Log info message with an exception

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

    Permalink

    Log info message

  18. def isDebugEnabled: Boolean

    Permalink
  19. def isErrorEnabled: Boolean

    Permalink
  20. def isInfoEnabled: Boolean

    Permalink
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def isTraceEnabled: Boolean

    Permalink
  23. def isWarnEnabled: Boolean

    Permalink
  24. lazy val name: String

    Permalink

    Name of the underlying logger

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

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

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

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

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

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

    Permalink

    Log trace message with an exception

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

    Permalink

    Log trace message

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

    Permalink

    Log warning message with an exception

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

    Permalink

    Log warn message

Inherited from AnyRef

Inherited from Any

Ungrouped