LogLevel enum¶
The scrubbr log level. Setting the log level will enabled logging for that level and below.
Signature:
export declare enum LogLevel
Enumeration Members¶
Member | Value | Description |
---|---|---|
DEBUG | 4 |
Log additional debug information. Set logNesting to true to also indent the logs with the data nesting. |
ERROR | 1 |
Log errors |
INFO | 3 |
Display basic information as well as warnings and errors. |
NONE | 0 |
Disable logging. |
WARN | 2 |
Log warnings and errors. |