final case class CapturedLogEvent(level: Level, message: String, cause: Option[Throwable], marker: Option[Marker]) extends Product with Serializable

Source
CapturedLogEvent.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CapturedLogEvent
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CapturedLogEvent(level: Level, message: String, errorCause: Throwable, marker: Marker)

    Constructor for Java API

  2. new CapturedLogEvent(level: Level, message: String, marker: Marker)

    Constructor for Java API

  3. new CapturedLogEvent(level: Level, message: String, errorCause: Throwable)

    Constructor for Java API

  4. new CapturedLogEvent(level: Level, message: String)

    Constructor for Java API

  5. new CapturedLogEvent(level: Level, message: String, errorCause: Optional[Throwable], marker: Optional[Marker], mdc: Map[String, Any])

    Constructor for Java API

  6. new CapturedLogEvent(level: Level, message: String, cause: Option[Throwable], marker: Option[Marker])

Value Members

  1. val cause: Option[Throwable]
  2. def getErrorCause: Optional[Throwable]
  3. def getMarker: Optional[Marker]
  4. val level: Level
  5. val marker: Option[Marker]
  6. val message: String
  7. def productElementNames: Iterator[String]
    Definition Classes
    Product