(errorOrMessage: any, category?: LogCategory)
| 19 | this.log(errorString(errorOrMessage), LogSeverity.Warn, category); |
| 20 | } |
| 21 | public error(errorOrMessage: any, category?: LogCategory): void { |
| 22 | this.log(errorString(errorOrMessage), LogSeverity.Error, category); |
| 23 | } |
| 24 | } |
nothing calls this directly
no test coverage detected