(message: string, ...args: any[])
| 16 | } |
| 17 | |
| 18 | export async function debug(message: string, ...args: any[]): Promise<void> { |
| 19 | if (process.env.LOG_LEVEL !== 'debug') { |
| 20 | return |
| 21 | } |
| 22 | console.error(format(label('debug', message), ...args)) |
| 23 | console.error('\n') |
| 24 | } |
no test coverage detected