Logging configuration

interface LoggingConfig {
    enabled?: boolean;
    level?: "info" | "error" | "debug" | "warning";
    prefix?: string;
}

Properties

enabled?: boolean

Enable logging (default: true in development, false in production)

level?: "info" | "error" | "debug" | "warning"

Log level: 'error', 'warning', 'info', 'debug'

prefix?: string

Custom prefix for log messages