* Logs an informational message. * * @param message The message to log * @param attributes Optional key-value pairs to include with the log event
(message: string, attributes?: ExtendedAttributes)
| 56 | * @param attributes Optional key-value pairs to include with the log event |
| 57 | */ |
| 58 | info(message: string, attributes?: ExtendedAttributes): void { |
| 59 | this.log('info', message, attributes) |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Logs a warning message. |