Interface IssuesPanelRecord

One row in the panel's log.

interface IssuesPanelRecord {
    level: IssuesPanelLevel;
    message: string;
    source: IssuesPanelSource;
    timestamp: number;
    type?: SDKErrorType;
}

Properties

Severity bucket.

message: string

Free-text error/warning message.

Which emitter emitted the event.

timestamp: number

Date.now() at the time the event fired.

SDKErrorType code, when supplied by the emitter.