Packages

trait NamedLoggerFactory extends AnyRef

NamedLoggerFactory augments a regular class-based slf4j logger with one annotated with a "name" where the name provides human readable context identifying a class instance, e.g. which participant in a set of participants has logged a particular message.

The name can be constructed in a nested, left-to-right append manner.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NamedLoggerFactory
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def append(key: String, value: String): NamedLoggerFactory

    Regular append method to augment log properties and append both key and value to logger factory name

    Regular append method to augment log properties and append both key and value to logger factory name

    key

    log property key

    value

    log property value

    returns

    new named logger factory

    Exceptions thrown

    java.lang.IllegalArgumentException if key already set

  2. abstract def appendUnnamedKey(key: String, value: String): NamedLoggerFactory

    Special purpose append method to augment log properties to append only the value to logger factory name for reduced verbosity

    Special purpose append method to augment log properties to append only the value to logger factory name for reduced verbosity

    key

    log property key, only added to property map, but not appended to name

    value

    log property value

    returns

    new named logger factory

    Exceptions thrown

    java.lang.IllegalArgumentException if key already set

  3. abstract val name: String

    Name for the logger.

    Name for the logger. Can be empty.

  4. abstract val properties: ListMap[String, String]

    Key-value map enabling structured logging, e.g.

    Key-value map enabling structured logging, e.g. in ledger api server.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def getLogger(klass: Class[_]): Logger

    get a loggers in factory methods

    get a loggers in factory methods

    Sometimes, the NamedLogging trait can not be used, e.g. in a factory method. In these cases, a logger can be created using this function.

  10. def getTracedLogger(klass: Class[_]): TracedLogger

    same as get logger for traced loggers

  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. lazy val threadName: String

    Yields the name in a form that is suitable as thread name.

  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped