Class LogEntry
Log entry.
public sealed class LogEntry
- Inheritance
-
LogEntry
- Inherited Members
Properties
Args
Call arguments.
[JsonPropertyName("args")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public RemoteObject[]? Args { get; set; }
Property Value
Category
category
[JsonPropertyName("category")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public LogEntryCategoryValues? Category { get; set; }
Property Value
Level
Log entry severity.
[JsonPropertyName("level")]
public LogEntryLevelValues Level { get; set; }
Property Value
LineNumber
Line number in the resource.
[JsonPropertyName("lineNumber")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? LineNumber { get; set; }
Property Value
- long?
NetworkRequestId
Identifier of the network request associated with this entry.
[JsonPropertyName("networkRequestId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? NetworkRequestId { get; set; }
Property Value
Source
Log entry source.
[JsonPropertyName("source")]
public LogEntrySourceValues Source { get; set; }
Property Value
StackTrace
JavaScript stack trace.
[JsonPropertyName("stackTrace")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTrace? StackTrace { get; set; }
Property Value
Text
Logged text.
[JsonPropertyName("text")]
public string Text { get; set; }
Property Value
Timestamp
Timestamp when this entry was added.
[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }
Property Value
Url
URL of the resource if known.
[JsonPropertyName("url")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Url { get; set; }
Property Value
WorkerId
Identifier of the worker associated with this entry.
[JsonPropertyName("workerId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? WorkerId { get; set; }