* Log a debug message * * Use for detailed information useful during development and debugging. * These logs are only shown in development environment by default.
(message: string, ...args: unknown[])
| 318 | * These logs are only shown in development environment by default. |
| 319 | */ |
| 320 | debug(message: string, ...args: unknown[]) { |
| 321 | this.log(LogLevel.DEBUG, message, ...args) |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * Log an info message |