Class LogRecord
Copied MapLibre Native log record delivered to a log callback.
public sealed record LogRecord : IEquatable<LogRecord>
- Inheritance
-
LogRecord
- Implements
- Inherited Members
Constructors
LogRecord(LogSeverity, uint, LogEvent, uint, long, string)
Copied MapLibre Native log record delivered to a log callback.
public LogRecord(LogSeverity Severity, uint RawSeverity, LogEvent Event, uint RawEvent, long Code, string Message)
Parameters
Properties
Code
public long Code { get; init; }
Property Value
Event
public LogEvent Event { get; init; }
Property Value
Message
public string Message { get; init; }
Property Value
RawEvent
public uint RawEvent { get; init; }
Property Value
RawSeverity
public uint RawSeverity { get; init; }
Property Value
Severity
public LogSeverity Severity { get; init; }