blob: 62fe6efa088e2afb378c003150abcca5a208171e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef FOOLOS_LOG_H
#define FOOLOS_LOG_H
#include <stdbool.h>
#define FOOLOS_LOG_ERROR 5
#define FOOLOS_LOG_WARNING 4
#define FOOLOS_LOG_INFO 3
#define FOOLOS_LOG_DEBUG 2
#define FOOLOS_LOG_FINE 1
void log(bool color,char *module_name, int prio, char *format_string, ...);
#endif
|