Interface FindMoreCapturedLogDetails

More searching options for CapturingLogger.findMessage

interface FindMoreCapturedLogDetails {
    type?: string | Function | RegExp;
    feature?: string | RegExp;
    identity?: string | RegExp;
    hasData?: boolean;
    data?: object;
}

Properties

type?: string | Function | RegExp
feature?: string | RegExp
identity?: string | RegExp
hasData?: boolean
data?: object

Assign to an object to match to the data. The object can have a subset of properties to match. The values must be exact matches. When assigned, hasData is ignored as the data property must be assigned.

Generated using TypeDoc v0.25.12