| 38 | } |
| 39 | |
| 40 | export interface InstallOptions { |
| 41 | /** |
| 42 | * Sets the minimum log level for the logger. |
| 43 | * All messages below the specified level will be ignored. |
| 44 | * |
| 45 | * Available levels: |
| 46 | * - 'debug' — logs: debug, info, warn, error |
| 47 | * - 'info' — logs: info, warn, error |
| 48 | * - 'warn' — logs: warn, error |
| 49 | * - 'error' — logs: error only |
| 50 | * - 'none' — disables all logging |
| 51 | * |
| 52 | * @default 'debug' |
| 53 | */ |
| 54 | logLevel?: LogLevelString; |
| 55 | } |
| 56 | |
| 57 | /* ------------------------------------------------------ */ |
| 58 |
nothing calls this directly
no outgoing calls
no test coverage detected