mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 09:10:10 +00:00
12 lines
416 B
C
12 lines
416 B
C
#ifndef LOG_LEVELS_H__
|
|
#define LOG_LEVELS_H__
|
|
|
|
#define LOG_MSG (0) /* Print message regardless of log level */
|
|
#define LOG_ERROR (1) /* Errors only, when we're in trouble */
|
|
#define LOG_WARN (2) /* Warnings, dazen and confused but trying to continue */
|
|
#define LOG_INFO (3) /* Informative, everything is fine */
|
|
#define LOG_DEBUG (4) /* Debug only */
|
|
|
|
#define DEFAULT_LOGLEVEL LOG_WARN
|
|
|
|
#endif /* LOG_LEVELS_H__ */
|