From d45392a67f3e18bdee5d02a0450e037e324ab7f6 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 27 Mar 2012 11:14:36 +0100 Subject: [PATCH] [console] Add LOG_ALL as a synonym for LOG_DEBUG Signed-off-by: Michael Brown --- src/include/syslog.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/include/syslog.h b/src/include/syslog.h index 3dfc11b96..93f32f867 100644 --- a/src/include/syslog.h +++ b/src/include/syslog.h @@ -51,6 +51,9 @@ FILE_LICENCE ( GPL2_OR_LATER ); /** Do not log any messages */ #define LOG_NONE -1 +/** Log all messages */ +#define LOG_ALL LOG_DEBUG + extern void log_vprintf ( const char *fmt, va_list args ); extern void __attribute__ (( format ( printf, 1, 2 ) ))