* Print information in --debug mode * @param {string} msg
(msg)
| 92 | * @param {string} msg |
| 93 | */ |
| 94 | debug(msg) { |
| 95 | const _msg = shouldMaskData() ? maskData(msg, getMaskConfig()) : msg |
| 96 | if (outputLevel >= 2) { |
| 97 | print(' '.repeat(output.stepShift), styles.debug(`${figures.pointerSmall} ${_msg}`)) |
| 98 | } |
| 99 | }, |
| 100 | |
| 101 | /** |
| 102 | * Print information in --verbose mode |
no test coverage detected