(...messages: any[])
| 89 | } |
| 90 | |
| 91 | warn(...messages: any[]): void { |
| 92 | if (!this.enabled) return; |
| 93 | loggerOutput.log(this.group, objectsToString(messages), 'warning'); |
| 94 | } |
| 95 | |
| 96 | error(...messages: any[]): void { |
| 97 | if (!this.enabled) return; |
no test coverage detected