(scope: string, message: string, data?: unknown)
| 31 | } |
| 32 | |
| 33 | debug(scope: string, message: string, data?: unknown): void { |
| 34 | this.write('DEBUG', scope, message, data) |
| 35 | } |
| 36 | |
| 37 | info(scope: string, message: string, data?: unknown): void { |
| 38 | this.write('INFO', scope, message, data) |
no test coverage detected