1#ifndef LOGLEVEL_H 2#define LOGLEVEL_H 3 4/* Safe for inclusion in assembly */ 5#define BIOS_EMERG 0 /* system is unusable */ 6#define BIOS_ALERT 1 /* action must be taken immediately */ 7#define BIOS_CRIT 2 /* critical conditions */ 8#define BIOS_ERR 3 /* error conditions */ 9#define BIOS_WARNING 4 /* warning conditions */ 10#define BIOS_NOTICE 5 /* normal but significant condition */ 11#define BIOS_INFO 6 /* informational */ 12#define BIOS_DEBUG 7 /* debug-level messages */ 13#define BIOS_SPEW 8 /* way too many details */ 14#define BIOS_NEVER 9 /* these messages are never printed */ 15 16#endif /* LOGLEVEL_H */ 17

