blob: 1159d94384182975d7b6fcb917208120a590deab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef FOOLOS_LOG_H
#define FOOLOS_LOGL_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, ...);
void panic(char *module_name, char *format_string);
void log_init();
void log_log();
#endif
|