]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[console] Add LOG_ALL as a synonym for LOG_DEBUG
authorMichael Brown <mcb30@ipxe.org>
Tue, 27 Mar 2012 10:14:36 +0000 (11:14 +0100)
committerMichael Brown <mcb30@ipxe.org>
Tue, 27 Mar 2012 10:14:36 +0000 (11:14 +0100)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/include/syslog.h

index 3dfc11b9656a2f0776bced6061679b9b7d728118..93f32f8676d260f19d6878a73cd291ac69a440c3 100644 (file)
@@ -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 ) ))