ReactOS 0.4.16-dev-1946-g52006dd
log.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Typedefs

typedef enum uacpi_log_level uacpi_log_level
 

Enumerations

enum  uacpi_log_level {
  UACPI_LOG_DEBUG = 5 , UACPI_LOG_TRACE = 4 , UACPI_LOG_INFO = 3 , UACPI_LOG_WARN = 2 ,
  UACPI_LOG_ERROR = 1
}
 

Typedef Documentation

◆ uacpi_log_level

Enumeration Type Documentation

◆ uacpi_log_level

Enumerator
UACPI_LOG_DEBUG 
UACPI_LOG_TRACE 
UACPI_LOG_INFO 
UACPI_LOG_WARN 
UACPI_LOG_ERROR 

Definition at line 7 of file log.h.

7 {
8 /*
9 * Super verbose logging, every op & uop being processed is logged.
10 * Mostly useful for tracking down hangs/lockups.
11 */
13
14 /*
15 * A little verbose, every operation region access is traced with a bit of
16 * extra information on top.
17 */
19
20 /*
21 * Only logs the bare minimum information about state changes and/or
22 * initialization progress.
23 */
25
26 /*
27 * Logs recoverable errors and/or non-important aborts.
28 */
30
31 /*
32 * Logs only critical errors that might affect the ability to initialize or
33 * prevent stable runtime.
34 */
uacpi_log_level
Definition: log.h:7
@ UACPI_LOG_INFO
Definition: log.h:24
@ UACPI_LOG_TRACE
Definition: log.h:18
@ UACPI_LOG_DEBUG
Definition: log.h:12
@ UACPI_LOG_ERROR
Definition: log.h:35
@ UACPI_LOG_WARN
Definition: log.h:29