diff options
Diffstat (limited to 'source4/include/system/syslog.h')
-rw-r--r-- | source4/include/system/syslog.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/source4/include/system/syslog.h b/source4/include/system/syslog.h index 7fcb87784b..7182e2e2d6 100644 --- a/source4/include/system/syslog.h +++ b/source4/include/system/syslog.h @@ -28,3 +28,36 @@ #endif #endif +/* For sys_adminlog(). */ +#ifndef LOG_EMERG +#define LOG_EMERG 0 /* system is unusable */ +#endif + +#ifndef LOG_ALERT +#define LOG_ALERT 1 /* action must be taken immediately */ +#endif + +#ifndef LOG_CRIT +#define LOG_CRIT 2 /* critical conditions */ +#endif + +#ifndef LOG_ERR +#define LOG_ERR 3 /* error conditions */ +#endif + +#ifndef LOG_WARNING +#define LOG_WARNING 4 /* warning conditions */ +#endif + +#ifndef LOG_NOTICE +#define LOG_NOTICE 5 /* normal but significant condition */ +#endif + +#ifndef LOG_INFO +#define LOG_INFO 6 /* informational */ +#endif + +#ifndef LOG_DEBUG +#define LOG_DEBUG 7 /* debug-level messages */ +#endif + |