diff options
Diffstat (limited to 'src/common/log.h')
-rw-r--r-- | src/common/log.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/common/log.h b/src/common/log.h index 8e0e5fc33d..7c481379a0 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -9,15 +9,12 @@ #ifdef HAVE_SYSLOG_H #include <syslog.h> +#define LOG_WARN LOG_WARNING #else #define LOG_DEBUG 0 #define LOG_INFO 1 -#define LOG_NOTICE 2 -#define LOG_WARNING 3 +#define LOG_WARN 3 #define LOG_ERR 4 -#define LOG_CRIT 5 -#define LOG_ALERT 6 -#define LOG_EMERG 7 #endif /* magic to make GCC check for proper format strings. */ |