* Print information in --verbose mode * @param {string} msg
(msg)
| 103 | * @param {string} msg |
| 104 | */ |
| 105 | log(msg) { |
| 106 | const _msg = shouldMaskData() ? maskData(msg, getMaskConfig()) : msg |
| 107 | if (outputLevel >= 3) { |
| 108 | print(' '.repeat(output.stepShift), styles.log(truncate(` ${_msg}`, output.stepShift))) |
| 109 | } |
| 110 | }, |
| 111 | |
| 112 | /** |
| 113 | * Print error |
nothing calls this directly
no test coverage detected