Member Junction
    Preparing search index...

    Diagnostic event captured from the browser (console messages, network failures, page errors). Adapters that capture diagnostics push events into an internal buffer and expose them via GetDiagnostics().

    interface BrowserDiagnosticEvent {
        level?: string;
        message: string;
        timestamp: string;
        type: "console" | "pageerror" | "requestfailed" | "crash";
        url?: string;
    }
    Index

    Properties

    level?: string
    message: string
    timestamp: string
    type: "console" | "pageerror" | "requestfailed" | "crash"
    url?: string