mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 09:39:13 +00:00
To teach restorer code the log levels we need a separate file for their definition. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
10 lines
381 B
C
10 lines
381 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 */
|
|
|
|
#endif /* LOG_LEVELS_H__ */
|