(_message?, ..._optionalParams)
| 44 | } |
| 45 | |
| 46 | public debug(_message?, ..._optionalParams): void { |
| 47 | const type = 'debug'; |
| 48 | const args = this.processingArgs(arguments); |
| 49 | if (isDevMode()) this.log(`[${type}] ${args}`); |
| 50 | this.add(type, args); |
| 51 | } |
| 52 | |
| 53 | public info(_message?, ..._optionalParams): void { |
| 54 | const type = 'info'; |
no test coverage detected