blob: 337e56ff53328ea3172f741962bb6cd8a358eb0e [file] [log] [blame]
Joe Perches314ba352012-07-30 14:40:11 -07001#ifndef __KERN_LEVELS_H__
2#define __KERN_LEVELS_H__
3
4#define KERN_EMERG "<0>" /* system is unusable */
5#define KERN_ALERT "<1>" /* action must be taken immediately */
6#define KERN_CRIT "<2>" /* critical conditions */
7#define KERN_ERR "<3>" /* error conditions */
8#define KERN_WARNING "<4>" /* warning conditions */
9#define KERN_NOTICE "<5>" /* normal but significant condition */
10#define KERN_INFO "<6>" /* informational */
11#define KERN_DEBUG "<7>" /* debug-level messages */
12
13/* Use the default kernel loglevel */
14#define KERN_DEFAULT "<d>"
15/*
16 * Annotation for a "continued" line of log printout (only done after a
17 * line that had no enclosing \n). Only to be used by core/arch code
18 * during early bootup (a continued line is not SMP-safe otherwise).
19 */
20#define KERN_CONT "<c>"
21
22#endif