(message: string, meta?: any)
| 127 | } |
| 128 | |
| 129 | warn(message: string, meta?: any) { |
| 130 | // Disabled for MCP stdio communication |
| 131 | if (this.shouldLog(LogLevel.WARN)) { |
| 132 | console.error(this.formatLog(LogLevel.WARN, message, meta)); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | error(message: string, meta?: any) { |
| 137 | // Disabled for MCP stdio communication |