Circle V2 API Docs
    Preparing search index...

    Type Alias SystemAudioCaptureLogger

    Minimal logger surface for diagnosing system-audio capture. All methods are optional so callers can wire only what they need (or nothing at all).

    type SystemAudioCaptureLogger = {
        debug?: (message: string, context?: Record<string, unknown>) => void;
        error?: (message: string, context?: Record<string, unknown>) => void;
        warn?: (message: string, context?: Record<string, unknown>) => void;
    }
    Index

    Properties

    Properties

    debug?: (message: string, context?: Record<string, unknown>) => void
    error?: (message: string, context?: Record<string, unknown>) => void
    warn?: (message: string, context?: Record<string, unknown>) => void