(cliApiKey?: string)
| 179 | * Create a logger instance with configuration |
| 180 | */ |
| 181 | export function createLogger(cliApiKey?: string): Logger { |
| 182 | const config = getConfig(cliApiKey); |
| 183 | return new Logger(config.LOG_LEVEL as LogLevel); |
| 184 | } |
| 185 | |
| 186 | // Default logger instance for backward compatibility (uses environment variable) |
| 187 | export const logger = new Logger(); |
nothing calls this directly
no test coverage detected