* Log an info message
(message: string, context?: string, data?: unknown)
| 84 | * Log an info message |
| 85 | */ |
| 86 | info(message: string, context?: string, data?: unknown): void { |
| 87 | if (!shouldLog('info')) return; |
| 88 | const formatted = formatMessage('info', message, context); |
| 89 | if (data !== undefined) { |
| 90 | console.info(formatted, data); |
| 91 | } else { |
| 92 | console.info(formatted); |
| 93 | } |
| 94 | }, |
| 95 | |
| 96 | /** |
| 97 | * Log a warning message |
nothing calls this directly
no test coverage detected