summaryrefslogtreecommitdiff
path: root/src/server/log.h
blob: b256e086f3ef3e6975b6c84de4dcb6aa4a3a4ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LOG_H
#define LOG_H

#define LOG_INF		1
#define LOG_DBG		2
#define LOG_WRN		3
#define LOG_ERR		4

extern int log_init(char *name);
extern void log_add(int type, char *msg);
extern void log_quit();

#endif /* LOG_H */