(message: string, meta?: any)
| 113 | } |
| 114 | |
| 115 | debug(message: string, meta?: any) { |
| 116 | // Disabled for MCP stdio communication |
| 117 | if (this.shouldLog(LogLevel.DEBUG)) { |
| 118 | console.error(this.formatLog(LogLevel.DEBUG, message, meta)); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | info(message: string, meta?: any) { |
| 123 | // Disabled for MCP stdio communication |
no test coverage detected