Class LogEntry
java.lang.Object
org.openqa.selenium.devtools.v119.log.model.LogEntry
Log entry.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
static enum
static enum
-
Constructor Summary
ConstructorDescriptionLogEntry
(LogEntry.Source source, LogEntry.Level level, String text, Optional<LogEntry.Category> category, Timestamp timestamp, Optional<String> url, Optional<Integer> lineNumber, Optional<StackTrace> stackTrace, Optional<RequestId> networkRequestId, Optional<String> workerId, Optional<List<RemoteObject>> args) -
Method Summary
Modifier and TypeMethodDescriptiongetArgs()
Call arguments.getLevel()
Log entry severity.Line number in the resource.Identifier of the network request associated with this entry.Log entry source.JavaScript stack trace.getText()
Logged text.Timestamp when this entry was added.getUrl()
URL of the resource if known.Identifier of the worker associated with this entry.
-
Constructor Details
-
LogEntry
public LogEntry(LogEntry.Source source, LogEntry.Level level, String text, Optional<LogEntry.Category> category, Timestamp timestamp, Optional<String> url, Optional<Integer> lineNumber, Optional<StackTrace> stackTrace, Optional<RequestId> networkRequestId, Optional<String> workerId, Optional<List<RemoteObject>> args)
-
-
Method Details
-
getSource
Log entry source. -
getLevel
Log entry severity. -
getText
Logged text. -
getCategory
-
getTimestamp
Timestamp when this entry was added. -
getUrl
URL of the resource if known. -
getLineNumber
Line number in the resource. -
getStackTrace
JavaScript stack trace. -
getNetworkRequestId
Identifier of the network request associated with this entry. -
getWorkerId
Identifier of the worker associated with this entry. -
getArgs
Call arguments.
-