(tag, content, update, done)
| 60 | } |
| 61 | |
| 62 | info(tag, content, update, done) { |
| 63 | if (this.options.level < LOG.INFO.LEVEL) { |
| 64 | return; |
| 65 | } |
| 66 | this.log(tag, content, LOG.INFO.COLOR, update, done); |
| 67 | } |
| 68 | |
| 69 | warn(tag, content, update, done) { |
| 70 | if (this.options.level < LOG.WARN.LEVEL) { |
no test coverage detected