API Core - v1.5.0
    Preparing search index...

    Interface APICallLogDataWithErrorMessage

    Log data extended with the error message from a failed API call.

    interface APICallLogDataWithErrorMessage {
        dataType: string;
        errorMessage: string;
        method?: string;
        params: unknown;
        url?: string;
        toString(): string;
    }

    Hierarchy (View Summary)

    Index
    dataType: string
    errorMessage: string
    method?: string
    params: unknown
    url?: string
    • Serializes the log data to indented JSON in the fixed key order, redacting every value through the injected vocabulary.

      Returns string

      The redacted, pretty-printed JSON log line.