(...args)
| 826 | // wrapping it. For raw output (ex: stack traces, user logs, etc), use the |
| 827 | // rawWarn function. For more information about options, see: debug. |
| 828 | warn(...args) { |
| 829 | if (! this.isWarnEnabled()) { return; } |
| 830 | |
| 831 | var message = this._prettifyMessage(args); |
| 832 | this._print(LEVEL_WARN, message); |
| 833 | } |
| 834 | |
| 835 | rawError(...args) { |
| 836 | var message = this._format(args); |
no test coverage detected