* Log a warning message * * Use for potentially problematic situations that don't cause operation failure.
(message: string, ...args: unknown[])
| 336 | * Use for potentially problematic situations that don't cause operation failure. |
| 337 | */ |
| 338 | warn(message: string, ...args: unknown[]) { |
| 339 | this.log(LogLevel.WARN, message, ...args) |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * Log an error message |