chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.log / LogEntry

LogEntry

data class LogEntry

Log entry.

Constructors

<init>

Log entry.

LogEntry(source: String, level: String, text: String, timestamp: Timestamp, url: String? = null, lineNumber: Int? = null, stackTrace: StackTrace? = null, networkRequestId: RequestId? = null, workerId: String? = null, args: List<RemoteObject>? = null)

Properties

args

Call arguments.

val args: List<RemoteObject>?

level

Log entry severity.

val level: String

lineNumber

Line number in the resource.

val lineNumber: Int?

networkRequestId

Identifier of the network request associated with this entry.

val networkRequestId: RequestId?

source

Log entry source.

val source: String

stackTrace

JavaScript stack trace.

val stackTrace: StackTrace?

text

Logged text.

val text: String

timestamp

Timestamp when this entry was added.

val timestamp: Timestamp

url

URL of the resource if known.

val url: String?

workerId

Identifier of the worker associated with this entry.

val workerId: String?