(message: string, meta?: any)
| 120 | } |
| 121 | |
| 122 | info(message: string, meta?: any) { |
| 123 | // Disabled for MCP stdio communication |
| 124 | if (this.shouldLog(LogLevel.INFO)) { |
| 125 | console.error(this.formatLog(LogLevel.INFO, message, meta)); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | warn(message: string, meta?: any) { |
| 130 | // Disabled for MCP stdio communication |
no test coverage detected