summaryrefslogtreecommitdiffstats
path: root/src/include/syslog.h
diff options
context:
space:
mode:
authorMichael Brown2012-03-27 12:14:36 +0200
committerMichael Brown2012-03-27 12:14:36 +0200
commitd45392a67f3e18bdee5d02a0450e037e324ab7f6 (patch)
treea2bce2baa490829dea835d0f4ed220cfc201a0b8 /src/include/syslog.h
parent[image] Log image executions (diff)
downloadipxe-d45392a67f3e18bdee5d02a0450e037e324ab7f6.tar.gz
ipxe-d45392a67f3e18bdee5d02a0450e037e324ab7f6.tar.xz
ipxe-d45392a67f3e18bdee5d02a0450e037e324ab7f6.zip
[console] Add LOG_ALL as a synonym for LOG_DEBUG
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/syslog.h')
-rw-r--r--src/include/syslog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/syslog.h b/src/include/syslog.h
index 3dfc11b9..93f32f86 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 ) ))