Mobile Locker JavaScript SDK
    Preparing search index...

    Interface SDKLogFilter

    interface SDKLogFilter {
        domain?: SDKLogDomain;
        function?: string;
        level?: SDKLogLevel;
        limit?: number;
        retriesOnly?: boolean;
        since?: string;
        until?: string;
    }
    Index

    Properties

    domain?: SDKLogDomain

    Filter by SDK domain.

    function?: string

    Filter by function name.

    level?: SDKLogLevel

    Filter by log level.

    limit?: number

    Maximum number of entries to return. Defaults to 100.

    retriesOnly?: boolean

    Return only entries where retryCount > 0.

    since?: string

    Return only entries at or after this ISO 8601 timestamp.

    until?: string

    Return only entries at or before this ISO 8601 timestamp.