(message: string, ...args: unknown[])
| 41 | const logPrefix = options.logLabel ? `[${options.logLabel}] ` : ''; |
| 42 | |
| 43 | const logDebug = (message: string, ...args: unknown[]) => { |
| 44 | logger.debug(`${logPrefix}${message}`, ...args); |
| 45 | }; |
| 46 | |
| 47 | await new Promise<void>((resolve, reject) => { |
| 48 | // Note: We intentionally do NOT pass signal to spawn() because Node.js's |
no test coverage detected