* 日志记录
(message: string, data?: any)
| 391 | * 日志记录 |
| 392 | */ |
| 393 | private log(message: string, data?: any): void { |
| 394 | if (this.config.debug) { |
| 395 | console.log(`[ToolManager] ${message}`, data || ''); |
| 396 | } |
| 397 | } |
| 398 | } |
no outgoing calls
no test coverage detected