(message: string, context?: Record<string, unknown>)
| 178 | */ |
| 179 | export const defaultLogger: Logger = { |
| 180 | debug(message: string, context?: Record<string, unknown>): void { |
| 181 | if (process.env.CODEGRAPH_DEBUG) { |
| 182 | console.debug(`[CodeGraph] ${message}`, context ?? ''); |
| 183 | } |
| 184 | }, |
| 185 | warn(message: string, context?: Record<string, unknown>): void { |
| 186 | console.warn(`[CodeGraph] ${message}`, context ?? ''); |
| 187 | }, |