Browse Source

[console] Add LOG_ALL as a synonym for LOG_DEBUG

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 12 years ago
parent
commit
d45392a67f
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      src/include/syslog.h

+ 3
- 0
src/include/syslog.h View File

51
 /** Do not log any messages */
51
 /** Do not log any messages */
52
 #define LOG_NONE -1
52
 #define LOG_NONE -1
53
 
53
 
54
+/** Log all messages */
55
+#define LOG_ALL LOG_DEBUG
56
+
54
 extern void log_vprintf ( const char *fmt, va_list args );
57
 extern void log_vprintf ( const char *fmt, va_list args );
55
 
58
 
56
 extern void __attribute__ (( format ( printf, 1, 2 ) ))
59
 extern void __attribute__ (( format ( printf, 1, 2 ) ))

Loading…
Cancel
Save