()
| 157 | this._outputs = []; |
| 158 | } |
| 159 | public release() { |
| 160 | const capturedOutput = this._outputs; |
| 161 | this.captureLogs = false; |
| 162 | this._outputs = []; |
| 163 | return capturedOutput; |
| 164 | } |
| 165 | error(message: string, ...data: Arguments): void { |
| 166 | this.logMessage('error', message, data); |
| 167 | } |