Function causalChain

  • Takes an error, and continues yielding errors by tracing the chain of '.cause' properties on the error object. Finally yields a "rootCause" object for Rollbar to log as a custom property.

    Parameters

    • err: Error

    Returns Generator<Error | {
        rootCause: string;
    }>

Generated using TypeDoc