Log Level
Log level for filtering log output.
Log levels are ordered by priority, where lower priority values represent more verbose logging. Setting a minimum log level filters out all messages below that level.
Level Hierarchy (lowest to highest priority)
VERBOSE - Most detailed logging
DEBUG - Debug information
INFO - General information
WARN - Warning messages
ERROR - Error messages only
NONE - Disable all logging
Usage Example
// Only show warnings and errors
BleLog.setLevel(LogLevel.WARN)
// Show all logs including verbose
BleLog.setLevel(LogLevel.VERBOSE)
// Disable all logging
BleLog.setLevel(LogLevel.NONE)Content copied to clipboard