(message: string, category?: LogCategory)
| 13 | } |
| 14 | |
| 15 | public info(message: string, category?: LogCategory): void { |
| 16 | this.log(message, LogSeverity.Info, category); |
| 17 | } |
| 18 | public warn(errorOrMessage: any, category?: LogCategory): void { |
| 19 | this.log(errorString(errorOrMessage), LogSeverity.Warn, category); |
| 20 | } |