(text?: string)
| 95 | } |
| 96 | |
| 97 | function oraInstance(text?: string) { |
| 98 | return debugModeFlag ? ora.default({ text, prefixText: () => new Date().toISOString() }) : ora.default(text); |
| 99 | } |
| 100 | |
| 101 | export function writeLog(text: string, options?: LoggerOptions) { |
| 102 | if (!logsDirectory) throw new Error('Missing log file directory.'); |
no outgoing calls
no test coverage detected