(...args)
| 19 | // 调试模式 |
| 20 | const DEBUG = true; |
| 21 | const debugLog = (...args) => { |
| 22 | if (DEBUG) { |
| 23 | console.error(`[DEBUG ${new Date().toISOString()}]`, ...args); |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | class IcssDebugServer { |
| 28 | constructor() { |
no outgoing calls
no test coverage detected