diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-08-28 23:12:18 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-08-28 23:12:18 +0200 |
| commit | e8cf26c4f734744b4f60e4a2b2c9f02dc774fd1c (patch) | |
| tree | 92045af89e627f5e7de67169a20954c9609fa869 /lib/logger/log.h | |
| parent | 508aab5090b68c966ee3cf704b03946a207dd1bc (diff) | |
improved loggers granularity
Diffstat (limited to 'lib/logger/log.h')
| -rw-r--r-- | lib/logger/log.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/logger/log.h b/lib/logger/log.h index bcc1bc7..9c32a39 100644 --- a/lib/logger/log.h +++ b/lib/logger/log.h @@ -1,10 +1,9 @@ #ifndef FOOLOS_LOG_H #define FOOLOS_LOGL_H - -#define FOOLOS_LOG_INFO 1 - -#include <stdarg.h> +#define FOOLOS_LOG_INFO 3 +#define FOOLOS_LOG_DEBUG 2 +#define FOOLOS_LOG_FINE 1 void log(char *module_name, int prio, char *format_string, ...); |
