logLevel property
The logging level.
This string represents the minimum logging level that will be output. Common values include:
"DEBUG": Detailed information, useful for debugging."INFO": General information about the application's execution."WARNING": Indicates potential problems or unexpected situations."ERROR": Indicates errors that have occurred."OFF": Disables all logging.
The specific log levels and their behavior depend on the logging implementation used in the application.
Implementation
final String logLevel;