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