(text: string, options?: LoggerOptions)
| 141 | } |
| 142 | |
| 143 | export function debug(text: string, options?: LoggerOptions) { |
| 144 | if (debugModeFlag) { |
| 145 | info(text); |
| 146 | } else { |
| 147 | writeLog(text, options); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | export function debugSpinner(text: string, options?: LoggerOptions) { |
| 152 | writeLog(text, options); |