(...args)
| 57 | ) |
| 58 | }, |
| 59 | error(...args) { |
| 60 | console.log( |
| 61 | chalk.bold.bgRgb(247, 38, 33)('ERROR '), |
| 62 | `[${chalk.rgb(255, 255, 255)(new Date().toUTCString())}]:`, |
| 63 | chalk.rgb(255, 38, 0)(format(...args)) |
| 64 | ) |
| 65 | }, |
| 66 | warn(...args) { |
| 67 | console.log( |
| 68 | chalk.bold.bgRgb(255, 153, 0)('WARNING '), |
nothing calls this directly
no outgoing calls
no test coverage detected