ReactOS 0.4.16-dev-1946-g52006dd
log.h
Go to the documentation of this file.
1#pragma once
2
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7typedef enum uacpi_log_level {
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 */
37
38#ifdef __cplusplus
39}
40#endif
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