final case class CapturedLogEvent(level: Level, message: String, cause: Option[Throwable], marker: Option[Marker]) extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- CapturedLogEvent
- Serializable
- Product
- Equals
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CapturedLogEvent(level: Level, message: String, errorCause: Throwable, marker: Marker)
Constructor for Java API
- new CapturedLogEvent(level: Level, message: String, marker: Marker)
Constructor for Java API
- new CapturedLogEvent(level: Level, message: String, errorCause: Throwable)
Constructor for Java API
- new CapturedLogEvent(level: Level, message: String)
Constructor for Java API
- new CapturedLogEvent(level: Level, message: String, errorCause: Optional[Throwable], marker: Optional[Marker], mdc: Map[String, Any])
Constructor for Java API
- new CapturedLogEvent(level: Level, message: String, cause: Option[Throwable], marker: Option[Marker])
Representation of a Log Event issued by a akka.actor.typed.Behavior when testing with akka.actor.testkit.typed.scaladsl.BehaviorTestKit or akka.actor.testkit.typed.javadsl.BehaviorTestKit.