* Log an info message * * Use for general information about application operation.
(message: string, ...args: unknown[])
| 327 | * Use for general information about application operation. |
| 328 | */ |
| 329 | info(message: string, ...args: unknown[]) { |
| 330 | this.log(LogLevel.INFO, message, ...args) |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * Log a warning message |
no test coverage detected