(...args)
| 71 | ) |
| 72 | }, |
| 73 | trace(...args) { |
| 74 | console.log( |
| 75 | chalk.grey('TRACE '), |
| 76 | `[${chalk.rgb(255, 255, 255)(new Date().toUTCString())}]:`, |
| 77 | chalk.white(format(...args)) |
| 78 | ) |
| 79 | }, |
| 80 | debug(...args) { |
| 81 | console.log( |
| 82 | chalk.bold.bgRgb(66, 167, 245)('DEBUG '), |
nothing calls this directly
no outgoing calls
no test coverage detected