* Logs an error message. * * @param message The message to log * @param attributes Optional key-value pairs to include with the log event
(message: string, attributes?: ExtendedAttributes)
| 76 | * @param attributes Optional key-value pairs to include with the log event |
| 77 | */ |
| 78 | error(message: string, attributes?: ExtendedAttributes): void { |
| 79 | this.log('error', message, attributes) |
| 80 | } |
| 81 | } |