/** * Logging Infrastructure * * JSON Lines 포맷으로 Hook 로그를 파일에 기록합니다. * 외부 의존성 없이 native Node.js API만 사용. */ import type { LoggingConfig } from '../types/index.js'; export interface HookLogger { debug(msg: string, meta?: Record): void; info(msg: string, meta?: Record): void; warn(msg: string, meta?: Record): void; error(msg: string, err?: Error, meta?: Record): void; flush(): void; } export declare function createLogger(hookName: string, config?: LoggingConfig): HookLogger; //# sourceMappingURL=logger.d.ts.map