(errorOrMessage: any, category?: LogCategory)
| 35 | this.log(errorString(errorOrMessage), LogSeverity.Warn, category); |
| 36 | } |
| 37 | public error(errorOrMessage: any, category?: LogCategory): void { |
| 38 | this.log(errorString(errorOrMessage), LogSeverity.Error, category); |
| 39 | } |
| 40 | |
| 41 | public dispose(): void { |
| 42 | this.onLogEmitter.removeAllListeners(); |
nothing calls this directly
no test coverage detected