/** * Debug infrastructure for infrastructure-level logging. * * This module provides unified debug logging that works across all layers * (Adapter, Service, MCP, CLI) without requiring changes to individual * services, adapters, or handlers. * * @module debug */ export { DebugLogger, type DebugLayer } from './debug-logger.js'; export { withServiceDebugLogging } from './service-debug-proxy.js'; export { withCommandDebugLogging, executeWithDebugLogging, type DebugWrappableCommand, type CommandDebugResult, } from './command-debug-proxy.js';