(msg, stacktrace = undefined)
| 5 | console.log(chalk.default.yellow(msg)); |
| 6 | } |
| 7 | static error(msg, stacktrace = undefined) { |
| 8 | console.log(chalk.default.red(msg)); |
| 9 | |
| 10 | // Don't print the stacktrace in red. That |
| 11 | // would be overwhelming |
| 12 | if (stacktrace) { |
| 13 | console.log(stacktrace); |
| 14 | } |
| 15 | } |
| 16 | static http(msg) {} |
| 17 | }; |
no test coverage detected