(...args)
| 6 | indent: '', |
| 7 | |
| 8 | info(...args) { |
| 9 | console.log(this.indent + chalk.bgWhite.black(' INFO '), args.join(' ')); // eslint-disable-line |
| 10 | }, |
| 11 | |
| 12 | error(...args) { |
| 13 | console.log(this.indent + chalk.bgRed.white(' ERROR '), args.join(' ')); // eslint-disable-line |
nothing calls this directly
no outgoing calls
no test coverage detected