(message: string, ...args: Array<string | number | boolean>)
| 56 | } |
| 57 | |
| 58 | export function logFail(message: string, ...args: Array<string | number | boolean>) { |
| 59 | const msg = format(message, ...args); |
| 60 | instance.fail(msg); |
| 61 | return msg; |
| 62 | } |
| 63 | |
| 64 | export function progress(message: string, ...args: Array<string | number | boolean>) { |
| 65 | const msg = format(message, ...args); |