* Logs a warning message. * * @param message The message to log * @param attributes Optional key-value pairs to include with the log event
(message: string, attributes?: ExtendedAttributes)
| 66 | * @param attributes Optional key-value pairs to include with the log event |
| 67 | */ |
| 68 | warn(message: string, attributes?: ExtendedAttributes): void { |
| 69 | this.log('warn', message, attributes) |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Logs an error message. |
no test coverage detected