* 记录日志
(message: string, data?: any)
| 367 | * 记录日志 |
| 368 | */ |
| 369 | private log(message: string, data?: any): void { |
| 370 | if (this.config.debug) { |
| 371 | console.log(`[ToolComponent] ${message}`, data || ''); |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * 记录错误 |
no outgoing calls
no test coverage detected