(...args)
| 778 | // characters. See _wrap for more details. |
| 779 | // |
| 780 | debug(...args) { |
| 781 | if (! this.isDebugEnabled()) { return; } |
| 782 | |
| 783 | var message = this._prettifyMessage(args); |
| 784 | this._print(LEVEL_DEBUG, message); |
| 785 | } |
| 786 | |
| 787 | isInfoEnabled() { |
| 788 | return this.isLevelEnabled(LEVEL_CODE_INFO); |
no test coverage detected