mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 01:26:22 +00:00
- fix names in comments - add empty lines where needed - fix rbtree.h - fix syscall-types.h Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
12 lines
431 B
C
12 lines
431 B
C
#ifndef __CR_LOG_LEVELS_H__
|
|
#define __CR_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 /* __CR_LOG_LEVELS_H__ */
|