Vinyl
    Preparing search index...

    Interface ReportableErrorEvent

    interface ReportableErrorEvent {
        error: any;
        extra: any;
        level: ErrorLevel;
        location: null | CodeLocation;
        logPrefix: string;
        message: null | string;
        origin: string;
    }
    Index

    Properties

    error: any

    The thrown error, ready for serialization.

    extra: any

    Extra context information.

    level: ErrorLevel

    The error severity.

    location: null | CodeLocation

    The code location, parsed from the error stack.

    logPrefix: string

    The log prefix of the source of the error.

    message: null | string
    origin: string

    The origin of blame for the error.