(_message?, ..._optionalParams)
| 58 | } |
| 59 | |
| 60 | public warn(_message?, ..._optionalParams): void { |
| 61 | const type = 'warn'; |
| 62 | const args = this.processingArgs(arguments); |
| 63 | if (isDevMode()) this.log(`[${type}] ${args}`); |
| 64 | this.add(type, args); |
| 65 | } |
| 66 | |
| 67 | public getLevels() { |
| 68 | return this.levels; |
no test coverage detected