updated docs
[rlserver.git] / log.h
bloba366619413d2af5e801c2c8b92e41053cd4d296a
1 #ifndef __RLS_LOG__
2 #define __RLS_LOG__
4 enum
6 LOG_DEBUG = 0,
7 LOG_INFO,
8 LOG_WARNING,
9 LOG_ERROR,
10 LOG_FATAL
14 void init_log (void);
15 void write_log (int level, const char *fmt, ...);
18 #endif