From: Michael Brown Date: Tue, 27 Mar 2012 10:14:36 +0000 (+0100) Subject: [console] Add LOG_ALL as a synonym for LOG_DEBUG X-Git-Tag: v1.20.1~1876 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d45392a67f3e18bdee5d02a0450e037e324ab7f6;p=thirdparty%2Fipxe.git [console] Add LOG_ALL as a synonym for LOG_DEBUG Signed-off-by: Michael Brown --- 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 ) ))