* Log debug - for detailed diagnostic information * Use when: Tracing execution flow, inspecting data
(message: string, context?: LogContext)
| 111 | * Use when: Tracing execution flow, inspecting data |
| 112 | */ |
| 113 | debug(message: string, context?: LogContext): void { |
| 114 | // Only log debug in development |
| 115 | if (!this.isDevelopment) return |
| 116 | |
| 117 | const formatted = this.formatMessage('debug', message, context) |
| 118 | console.log(formatted) |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | // Export singleton instance |
no test coverage detected