Mobile Locker JavaScript SDK
    Preparing search index...

    Interface SDKLogEntry

    interface SDKLogEntry {
        domain: SDKLogDomain;
        durationMs: number | null;
        function: string | null;
        id: number;
        level: SDKLogLevel;
        message: string;
        metadata: Record<string, unknown> | null;
        retryCount: number | null;
        timestamp: string;
    }
    Index

    Properties

    domain: SDKLogDomain
    durationMs: number | null

    How long the operation took in milliseconds, or null for custom entries.

    function: string | null

    Full function name that wrote the entry, or null for custom entries.

    id: number
    message: string
    metadata: Record<string, unknown> | null

    Arbitrary key/value metadata attached to the entry.

    retryCount: number | null

    Number of retries before success, or null for custom entries.

    timestamp: string

    ISO 8601 timestamp of when the entry was written.