diff options
| author | Michael Brown | 2012-03-27 12:14:36 +0200 |
|---|---|---|
| committer | Michael Brown | 2012-03-27 12:14:36 +0200 |
| commit | d45392a67f3e18bdee5d02a0450e037e324ab7f6 (patch) | |
| tree | a2bce2baa490829dea835d0f4ed220cfc201a0b8 /src/include | |
| parent | [image] Log image executions (diff) | |
| download | ipxe-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')
| -rw-r--r-- | src/include/syslog.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 ) )) |
