2017-04-25 19:06:58 +00:00
|
|
|
#ifndef _WLR_COMMON_LOG_H
|
|
|
|
#define _WLR_COMMON_LOG_H
|
|
|
|
#include <stdbool.h>
|
2017-05-03 05:04:41 +00:00
|
|
|
#include <stdarg.h>
|
2017-04-25 19:06:58 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
L_SILENT = 0,
|
|
|
|
L_ERROR = 1,
|
|
|
|
L_INFO = 2,
|
|
|
|
L_DEBUG = 3,
|
|
|
|
} log_importance_t;
|
|
|
|
|
|
|
|
typedef void (*log_callback_t)(log_importance_t importance, const char *fmt, va_list args);
|
|
|
|
|
|
|
|
void init_log(log_callback_t callback);
|
|
|
|
|
|
|
|
#endif
|