Compare commits
2 Commits
e12120fade
...
cf80ff7b6b
Author | SHA1 | Date | |
---|---|---|---|
cf80ff7b6b | |||
0309934d82 |
@ -26,6 +26,7 @@ struct fpga_cell *fpga_fdef_loader_load(char *filename)
|
|||||||
if (!cell) {
|
if (!cell) {
|
||||||
report(LL_CRITICAL,
|
report(LL_CRITICAL,
|
||||||
"Out of memory when creating cell.");
|
"Out of memory when creating cell.");
|
||||||
|
/* TODO: clean up existing cells */
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -45,6 +46,7 @@ struct fpga_cell *fpga_fdef_loader_load(char *filename)
|
|||||||
if (!cell) {
|
if (!cell) {
|
||||||
report(LL_CRITICAL,
|
report(LL_CRITICAL,
|
||||||
"Out of memory when creating cell.");
|
"Out of memory when creating cell.");
|
||||||
|
/* TODO: clean up existing cells */
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -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