(message: string, category?: LogCategory)
| 29 | } |
| 30 | |
| 31 | public info(message: string, category?: LogCategory): void { |
| 32 | this.log(message, LogSeverity.Info, category); |
| 33 | } |
| 34 | public warn(errorOrMessage: any, category?: LogCategory): void { |
| 35 | this.log(errorString(errorOrMessage), LogSeverity.Warn, category); |
| 36 | } |