Class

org.scalawag.timber.api.style.log4j

Logger

Related Doc: package log4j

Permalink

class Logger extends BaseLogger with Trace with Debug with Info with Warn with Error with Fatal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Logger
  2. Fatal
  3. Error
  4. Warn
  5. Info
  6. Debug
  7. Trace
  8. BaseLogger
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Logger(name: String)(implicit dispatcher: Dispatcher)

    Permalink

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. val attributes: Map[String, Any]

    Permalink

    the logger attributes that this logger associates with the entries it creates

    the logger attributes that this logger associates with the entries it creates

    Definition Classes
    BaseLogger
  6. def buildEntry(level: Option[Level], message: Option[Message], location: Option[LogCallLocation], entryTags: TraversableOnce[Tag]): Entry

    Permalink
    Attributes
    protected
    Definition Classes
    BaseLogger
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def debug(tags: TraversableOnce[Tag])(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Debug
  9. def debug(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Debug
  10. val debugLevel: Level

    Permalink

    Override to customize the level at which calls to debug create entries.

    Override to customize the level at which calls to debug create entries.

    Attributes
    protected[this]
    Definition Classes
    Debug
  11. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def error(tags: TraversableOnce[Tag])(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Error
  14. def error(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Error
  15. val errorLevel: Level

    Permalink

    Override to customize the level at which calls to error create entries.

    Override to customize the level at which calls to error create entries.

    Attributes
    protected[this]
    Definition Classes
    Error
  16. def fatal(tags: TraversableOnce[Tag])(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Fatal
  17. def fatal(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Fatal
  18. val fatalLevel: Level

    Permalink

    Override to customize the level at which calls to fatal create entries.

    Override to customize the level at which calls to fatal create entries.

    Attributes
    protected[this]
    Definition Classes
    Fatal
  19. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. def info(tags: TraversableOnce[Tag])(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Info
  23. def info(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Info
  24. val infoLevel: Level

    Permalink

    Override to customize the level at which calls to info create entries.

    Override to customize the level at which calls to info create entries.

    Attributes
    protected[this]
    Definition Classes
    Info
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. def log(implicit location: LogCallLocation): Unit

    Permalink

    Submits an entry without a level, a Message or tags to the logging system.

    Submits an entry without a level, a Message or tags to the logging system. This essentially creates an entry with nothing but automatically-collected call metadata.

    location

    the source location of the method call (usually automatically fulfilled by LogCallLocation.capture())

    Definition Classes
    BaseLogger
  27. def log(message: Message)(implicit location: LogCallLocation): Unit

    Permalink

    Submits an entry with a Message but no level or tags to the logging system.

    Submits an entry with a Message but no level or tags to the logging system.

    message

    the message to include with the entry

    location

    the source location of the method call (usually automatically fulfilled by LogCallLocation.capture())

    Definition Classes
    BaseLogger
  28. def log(level: Level)(message: Message)(implicit location: LogCallLocation): Unit

    Permalink

    Submits an entry with a Message and level but no tags to the logging system.

    Submits an entry with a Message and level but no tags to the logging system.

    The message argument appears in an argument list by itself because this allows us to use a thunk or a tuple as the source of the implicit Message conversion. When it appears with other arguments, the appearance of the calling syntax goes downhill fast (e.g., having to wrap the thunk in parentheses or having to include extra parentheses around tuples). Similarly, tags is not a varargs parameter because the compiler prefers to perceive multiple arguments as possible Tags (and failing) rather than look for an implicit conversion from the tuple.

    level

    the level to use for the entry created

    message

    the message to include with the entry

    location

    the source location of the method call (usually automatically fulfilled by LogCallLocation.capture())

    Definition Classes
    BaseLogger
  29. def log(tags: TraversableOnce[Tag])(message: Message)(implicit location: LogCallLocation): Unit

    Permalink

    Submits an entry with a Message and tags but no level to the logging system.

    Submits an entry with a Message and tags but no level to the logging system.

    The message argument appears in an argument list by itself because this allows us to use a thunk or a tuple as the source of the implicit Message conversion. When it appears with other arguments, the appearance of the calling syntax goes downhill fast (e.g., having to wrap the thunk in parentheses or having to include extra parentheses around tuples). Similarly, tags is not a varargs parameter because the compiler prefers to perceive multiple arguments as possible Tags (and failing) rather than look for an implicit conversion from the tuple.

    tags

    additional tags to include with the entry

    message

    the message to include with the entry

    location

    the source location of the method call (usually automatically fulfilled by LogCallLocation.capture())

    Definition Classes
    BaseLogger
  30. def log(level: Level, tags: TraversableOnce[Tag] = Iterable.empty)(message: Message)(implicit location: LogCallLocation): Unit

    Permalink

    Submits an entry with a level, a message and maybe tags to the logging system.

    Submits an entry with a level, a message and maybe tags to the logging system.

    The message argument appears in an argument list by itself because this allows us to use a thunk or a tuple as the source of the implicit Message conversion. When it appears with other arguments, the appearance of the calling syntax goes downhill fast (e.g., having to wrap the thunk in parentheses or having to include extra parentheses around tuples). Similarly, tags is not a varargs parameter because the compiler prefers to perceive multiple arguments as possible Tags (and failing) rather than look for an implicit conversion from the tuple.

    level

    the level to use for the entry created

    tags

    additional tags to include with the entry

    message

    the message to include with the entry

    location

    the source location of the method call (usually automatically fulfilled by LogCallLocation.capture())

    Definition Classes
    BaseLogger
  31. val name: String

    Permalink
  32. final def ne(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  36. val tags: Set[Tag]

    Permalink

    the tags that this logger associates with the entries it creates

    the tags that this logger associates with the entries it creates

    Definition Classes
    BaseLogger
  37. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  38. def trace(tags: TraversableOnce[Tag])(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Trace
  39. def trace(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Trace
  40. val traceLevel: Level

    Permalink

    Override to customize the level at which calls to trace create entries.

    Override to customize the level at which calls to trace create entries.

    Attributes
    protected[this]
    Definition Classes
    Trace
  41. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def warn(tags: TraversableOnce[Tag])(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Warn
  45. def warn(message: Message)(implicit location: LogCallLocation): Unit

    Permalink
    Definition Classes
    Warn
  46. val warnLevel: Level

    Permalink

    Override to customize the level at which calls to warn create entries.

    Override to customize the level at which calls to warn create entries.

    Attributes
    protected[this]
    Definition Classes
    Warn

Inherited from Fatal

Inherited from Error

Inherited from Warn

Inherited from Info

Inherited from Debug

Inherited from Trace

Inherited from BaseLogger

Inherited from AnyRef

Inherited from Any

Ungrouped