Reverse order of log levels
This commit is contained in:
parent
0309934d82
commit
cf80ff7b6b
@ -6,11 +6,11 @@
|
|||||||
static int current_log_level = 100;
|
static int current_log_level = 100;
|
||||||
|
|
||||||
static const char *ll_string[] = {
|
static const char *ll_string[] = {
|
||||||
"\x1B[34m[D] ",
|
|
||||||
"\x1B[32m[I] ",
|
|
||||||
"\x1B[33m[W] ",
|
|
||||||
"\x1B[31m[E] ",
|
|
||||||
"\x1B[31m\x1B[1m[X] ",
|
"\x1B[31m\x1B[1m[X] ",
|
||||||
|
"\x1B[31m[E] ",
|
||||||
|
"\x1B[33m[W] ",
|
||||||
|
"\x1B[32m[I] ",
|
||||||
|
"\x1B[34m[D] ",
|
||||||
"[?] "
|
"[?] "
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3,11 +3,11 @@
|
|||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
enum log_level {LL_DEBUG = 0,
|
enum log_level {LL_CRITICAL = 0,
|
||||||
LL_INFO,
|
|
||||||
LL_WARNING,
|
|
||||||
LL_ERROR,
|
LL_ERROR,
|
||||||
LL_CRITICAL,
|
LL_WARNING,
|
||||||
|
LL_INFO,
|
||||||
|
LL_DEBUG,
|
||||||
LL_COUNT};
|
LL_COUNT};
|
||||||
enum log_level report(enum log_level log_level, const char *format, ...);
|
enum log_level report(enum log_level log_level, const char *format, ...);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user