(logger: (level: LogLevel, ...args: any[]) => void)
| 28 | } |
| 29 | |
| 30 | public setCustomLogger(logger: (level: LogLevel, ...args: any[]) => void): void { |
| 31 | this.customLogger = logger; |
| 32 | } |
| 33 | |
| 34 | public verbose(...args: any[]): void { |
| 35 | this.log('verbose', ...args); |
nothing calls this directly
no outgoing calls
no test coverage detected