(message: string, context?: Record<string, unknown>)
| 183 | } |
| 184 | }, |
| 185 | warn(message: string, context?: Record<string, unknown>): void { |
| 186 | console.warn(`[CodeGraph] ${message}`, context ?? ''); |
| 187 | }, |
| 188 | error(message: string, context?: Record<string, unknown>): void { |
| 189 | console.error(`[CodeGraph] ${message}`, context ?? ''); |
| 190 | }, |