feature (kernel): added log level 'None'
This commit is contained in:
parent
b80514d80e
commit
f4566e782b
|
@ -21,6 +21,7 @@
|
|||
#define LOG_PORT 0x3F8
|
||||
|
||||
typedef enum {
|
||||
LOG_NONE,
|
||||
LOG_INFO,
|
||||
LOG_DEBUG,
|
||||
LOG_WARNING,
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include "utils/io.h"
|
||||
|
||||
string_t log_prefixes[LOG_ENUM_END] = {
|
||||
"", // LOG_NONE
|
||||
"[ Info ] ",
|
||||
"[ Debug ] ",
|
||||
"[ Warning ] ",
|
||||
|
|
Loading…
Reference in New Issue