summaryrefslogtreecommitdiff
path: root/lib/logger/log.h
blob: bcc1bc7346655336dec20ff9d82e18f3898d3e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef FOOLOS_LOG_H
#define FOOLOS_LOGL_H


#define FOOLOS_LOG_INFO 1

#include <stdarg.h>

void log(char *module_name, int prio, char *format_string, ...);

#endif