(options: Partial<LoggerOptions> = {})
| 19 | }; |
| 20 | |
| 21 | constructor(options: Partial<LoggerOptions> = {}) { |
| 22 | this.level = options.level || 'info'; |
| 23 | this.customLogger = options.customLogger; |
| 24 | } |
| 25 | |
| 26 | public setLevel(level: LogLevel): void { |
| 27 | this.level = level; |
nothing calls this directly
no outgoing calls
no test coverage detected