Enum uacpi_log_level
enum uacpi_log_level {
UACPI_LOG_DEBUG,
UACPI_LOG_TRACE,
UACPI_LOG_INFO,
UACPI_LOG_WARN,
UACPI_LOG_ERROR
};Values
UACPI_LOG_DEBUGSuper verbose logging, every op & uop being processed is logged.
Mostly useful for tracking down hangs/lockups.
UACPI_LOG_TRACEA little verbose, every operation region access is traced with a bit of
extra information on top.
UACPI_LOG_INFOOnly logs the bare minimum information about state changes and/or
initialization progress.
UACPI_LOG_WARNLogs recoverable errors and/or non-important aborts.
UACPI_LOG_ERRORLogs only critical errors that might affect the ability to initialize or
prevent stable runtime.