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_DEBUG
Super verbose logging, every op & uop being processed is logged.
Mostly useful for tracking down hangs/lockups.
UACPI_LOG_TRACE
A little verbose, every operation region access is traced with a bit of
extra information on top.
UACPI_LOG_INFO
Only logs the bare minimum information about state changes and/or
initialization progress.
UACPI_LOG_WARN
Logs recoverable errors and/or non-important aborts.
UACPI_LOG_ERROR
Logs only critical errors that might affect the ability to initialize or
prevent stable runtime.