(scope: string, message: string, data?: unknown)
| 35 | } |
| 36 | |
| 37 | info(scope: string, message: string, data?: unknown): void { |
| 38 | this.write('INFO', scope, message, data) |
| 39 | } |
| 40 | |
| 41 | warn(scope: string, message: string, data?: unknown): void { |
| 42 | this.write('WARN', scope, message, data) |