(tag, content, update, done)
| 74 | } |
| 75 | |
| 76 | error(tag, content, update, done) { |
| 77 | if (this.options.level < LOG.ERROR.LEVEL) { |
| 78 | return; |
| 79 | } |
| 80 | this.log(tag, content, LOG.ERROR.COLOR, update, done); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | export default new Logger(DEFAULT_OPTIONS); |
no test coverage detected