Class LogEntry
Log entry.
public sealed record LogEntry : IEquatable<LogEntry>
- Inheritance
-
LogEntry
- Implements
- Inherited Members
Constructors
LogEntry(string, string, string, Timestamp)
Log entry.
public LogEntry(string Source, string Level, string Text, Timestamp Timestamp)
Parameters
SourcestringLog entry source.
LevelstringLog entry severity.
TextstringLogged text.
TimestampTimestampTimestamp when this entry was added.
Properties
Args
Call arguments.
public ImmutableArray<RemoteObject>? Args { get; init; }
Property Value
Category
public string? Category { get; init; }
Property Value
Level
Log entry severity.
public string Level { get; init; }
Property Value
LineNumber
Line number in the resource.
public long? LineNumber { get; init; }
Property Value
- long?
NetworkRequestId
Identifier of the network request associated with this entry.
public RequestId? NetworkRequestId { get; init; }
Property Value
Source
Log entry source.
public string Source { get; init; }
Property Value
StackTrace
JavaScript stack trace.
public StackTrace? StackTrace { get; init; }
Property Value
Text
Logged text.
public string Text { get; init; }
Property Value
Timestamp
Timestamp when this entry was added.
public Timestamp Timestamp { get; init; }
Property Value
Url
URL of the resource if known.
public string? Url { get; init; }
Property Value
WorkerId
Identifier of the worker associated with this entry.
public string? WorkerId { get; init; }