podcastindex
    Preparing search index...

    Interface DebugOptions

    interface DebugOptions {
        auth?: boolean;
        logger?: (message: string, ...args: unknown[]) => void;
        request?: boolean;
        response?: boolean;
    }
    Index

    Properties

    auth?: boolean

    Log auth header generation (key, timestamp, hash). Default: true when debug is enabled.

    logger?: (message: string, ...args: unknown[]) => void

    Custom log function. Defaults to console.error.

    request?: boolean

    Log outgoing request details (URL, headers, params). Default: true when debug is enabled.

    response?: boolean

    Log raw response details (status, headers, body). Default: true when debug is enabled.