| 13 | }; |
| 14 | |
| 15 | export interface ILogger { |
| 16 | /** |
| 17 | * Logs a debug message. |
| 18 | * @param message - The message to log |
| 19 | * @param args - Additional arguments to log |
| 20 | */ |
| 21 | debug(message: string, ...args: unknown[]): void; |
| 22 | /** |
| 23 | * Logs an info message. |
| 24 | * @param message - The message to log |
| 25 | * @param args - Additional arguments to log |
| 26 | */ |
| 27 | info(message: string, ...args: unknown[]): void; |
| 28 | /** |
| 29 | * Logs a warning message. |
| 30 | * @param message - The message to log |
| 31 | * @param args - Additional arguments to log |
| 32 | */ |
| 33 | warn(message: string, ...args: unknown[]): void; |
| 34 | /** |
| 35 | * Logs an error message. |
| 36 | * @param message - The message to log |
| 37 | * @param args - Additional arguments to log |
| 38 | */ |
| 39 | error(message: string, ...args: unknown[]): void; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Configuration for logger initialization. |
no outgoing calls
no test coverage detected
searching dependent graphs…