ExpoFpConsoleMessage

@Serializable
data class ExpoFpConsoleMessage(val type: ExpoFpConsoleMessage.OutputType = OutputType.LOG, val args: List<String> = emptyList())

Information about console output.

Console output types that can be intercepted: assert, debug, error, info, log, trace, warn

Constructors

Link copied to clipboard
constructor(type: ExpoFpConsoleMessage.OutputType = OutputType.LOG, args: List<String> = emptyList())

Types

Link copied to clipboard

Type of the console output.

Properties

Link copied to clipboard
@SerialName(value = "args")
val args: List<String>

Console message parts (decoded from args).

Link copied to clipboard
@Transient
val id: UUID

Unique identifier (not serialized).

Link copied to clipboard

Joined console message.

Link copied to clipboard
@Transient
val time: Date

Time of the message (not serialized).

Link copied to clipboard
@SerialName(value = "type")
val type: ExpoFpConsoleMessage.OutputType

Type of the console output.

Functions

Link copied to clipboard
open override fun toString(): String

Human-readable description, matching iOS formatting.