Briyah SDK - v2.0.6
    Preparing search index...

    Interface LoggingOptions

    interface LoggingOptions {
        aiDebug?: boolean;
        console?: boolean;
        enabled?: boolean;
        level?: "debug" | "log" | "warn" | "error";
        logFile?: string;
    }
    Index
    aiDebug?: boolean

    Write the full text of every AI request, thinking output, and response to individual files under {dataPath}/logs/ai-debug/. Can also be enabled by setting the AI_DEBUG environment variable to 'true'. Default: false.

    console?: boolean

    Write logs to the console (stdout/stderr). Default: false

    enabled?: boolean

    Set to false to disable all logging. Default: true

    level?: "debug" | "log" | "warn" | "error"

    Minimum level to write. Default: 'log' ('debug' also enables debug messages)

    logFile?: string

    Write logs to a file. Default: {dataPath}/logs/briyah.log