(scope: string, message: string, data?: unknown)
| 39 | } |
| 40 | |
| 41 | warn(scope: string, message: string, data?: unknown): void { |
| 42 | this.write('WARN', scope, message, data) |
| 43 | } |
| 44 | |
| 45 | /** `data` may be an Error; its name/message/stack are extracted automatically. */ |
| 46 | error(scope: string, message: string, data?: unknown): void { |